-
Notifications
You must be signed in to change notification settings - Fork 1
/
C.cpp
122 lines (102 loc) · 2.78 KB
/
C.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define ull unsigned long long
#define dd double
#define ld long double
#define sl(n) scanf("%lld", &n)
#define si(n) scanf("%d", &n)
#define sd(n) scanf("%lf", &n)
#define pll pair <ll, ll>
#define pii pair <int, int>
#define mp make_pair
#define pb push_back
#define inf (1LL << 62)
#define loop(i, start, stop, inc) for(ll i = start; i <= stop; i += inc)
#define for1(i, stop) for(ll i = 1; i <= stop; i++)
#define for0(i, stop) for(ll i = 0; i < stop; i++)
#define rep1(i, start) for(ll i = start; i >= 1; i--)
#define rep0(i, start) for(ll i = (start-1); i >= 0; i--)
#define ms(n, i) memset(n, i, sizeof(n))
#define casep(n) printf("Case %lld:", ++n)
#define pn printf("\n")
#define pf printf
#define EL '\n'
#define fastio std::ios_base::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL);
const ll sz = 1e4 + 10;
bool vis[sz][1009];
ll land[sz];
struct node {
ll pos, tim, tot;
};
int main()
{
ll n, m;
cin >> n >> m;
for1(i, m) sl(land[i]);
sort(land + 1, land + m+1);
ll g, r;
cin >> g >> r;
ll f = land[1];
if(f > g) {
//cout << g << " " << f << endl;
cout << -1 << endl;
return 0;
}
deque <node> q;
q.push_front({1, f, f});
vis[1][f] = 1;
ll ans = inf;
while(!q.empty()) {
node u = q.front();
q.pop_front();
//cout << u.pos << " " << u.tim << endl;
if(land[u.pos] == n) {
ans = min(ans, u.tot);
continue;
}
ll baki = g - u.tim;
if(baki == 0) {
u.tot += r, u.tim = 0;
if(!vis[u.pos][u.tim]) {
vis[u.pos][u.tim] = 1;
q.pb({u.pos, u.tim, u.tot});
}
continue;
}
ll lagbe = n - land[u.pos];
if(lagbe <= baki) {
ans = min(ans, u.tot + lagbe);
}
ll lft = u.pos - 1, rgt = u.pos + 1;
if(lft >= 1) {
ll rest = g - u.tim;
ll need = abs(land[u.pos] - land[lft]);
if(need <= rest) {
ll now = u.tim + need;
ll tot = u.tot + need;
if(!vis[lft][now]) {
vis[lft][now] = 1;
q.push_front({lft, now, tot});
}
}
}
if(rgt <= n) {
ll rest = g - u.tim;
ll need = abs(land[u.pos] - land[rgt]);
if(need <= rest) {
ll now = u.tim + need;
ll tot = u.tot + need;
if(!vis[rgt][now]) {
vis[rgt][now] = 1;
q.push_front({rgt, now, tot});
}
}
}
}
if(ans == inf)
cout << -1 << endl;
else
cout << ans << endl;
return 0;
}