# |
제출 시각 |
아이디 |
문제 |
언어 |
결과 |
실행 시간 |
메모리 |
55155 |
2018-07-06T07:00:43 Z |
윤교준(#1528) |
날다람쥐 (JOI14_ho_t4) |
C++11 |
|
2000 ms |
10832 KB |
#include <bits/stdc++.h>
#define pb push_back
#define eb emplace_back
#define sz(V) ((int)(V).size())
#define allv(V) ((V).begin()),((V).end())
#define befv(V) ((V)[sz(V)-2])
#define sorv(V) sort(allv(V))
#define revv(V) reverse(allv(V))
#define univ(V) (V).erase(unique(allv(V)),(V).end())
#define upmax(a,b) (a)=max((a),(b))
#define upmin(a,b) (a)=min((a),(b))
#define rb(x) ((x)&(-(x)))
#define INF (0x3f3f3f3f)
#define INFLL (0x3f3f3f3f3f3f3f3fll)
using namespace std;
typedef long long ll;
typedef long double ld;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;
typedef pair<int, ll> pil;
typedef pair<ll, int> pli;
void fuk() { exit(-1); }
const int MAXN = 100005;
const int MAXM = 300005;
vector<pii> G[MAXN];
ll D[MAXN];
int A[MAXM], B[MAXM], C[MAXM];
int H[MAXN];
ll Ans = INFLL;
int N, M, X, MXH;
ll f(int h) {
priority_queue<pli, vector<pli>, greater<pli>> PQ;
fill(D, D+N+1, INFLL);
D[1] = 0;
PQ.push(pli(0, 1));
for(; !PQ.empty();) {
int idx; ll dst; tie(dst, idx) = PQ.top(); PQ.pop();
if(D[idx] < dst) continue;
for(pii e : G[idx]) {
int nidx = e.first; ll ndst = dst + e.second;
if(H[nidx] < ll(h) - ndst) continue;
if(D[nidx] <= ndst) continue;
D[nidx] = ndst;
PQ.push(pli(ndst, nidx));
}
}
return D[N]*2 + abs(X - h) + H[N] - h;
}
int main() {
//freopen("input.txt", "r", stdin);
ios::sync_with_stdio(false);
cin >> N >> M >> X;
for(int i = 1; i <= N; i++) cin >> H[i];
for(int i = 1; i <= M; i++) cin >> A[i] >> B[i] >> C[i];
for(int i = 1, a, b, c; i <= M; i++) {
a = A[i]; b = B[i]; c = C[i];
if(c <= H[a]) G[a].eb(b, c);
if(c <= H[b]) G[b].eb(a, c);
}
if(INFLL <= f(0)) {
puts("-1");
return 0;
}
{
int s = 0, e = H[1]; for(int m; s < e;) {
m = (s+e+1)/2;
if(INFLL <= f(m)) e = m-1;
else s = m;
}
MXH = s;
}
ll pv = -INFLL;
for(int h = 0; h <= X; h++) {
upmin(Ans, f(h));
if(D[N] < pv) fuk();
pv = D[N];
}
for(int h = X+1; h <= MXH; h++) {
upmin(Ans, f(h));
if(D[N] < pv) fuk();
pv = D[N];
}
cout << Ans << endl;
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
5 ms |
2680 KB |
Output is correct |
2 |
Correct |
11 ms |
2788 KB |
Output is correct |
3 |
Correct |
25 ms |
2952 KB |
Output is correct |
4 |
Correct |
5 ms |
2952 KB |
Output is correct |
5 |
Correct |
12 ms |
2952 KB |
Output is correct |
6 |
Correct |
4 ms |
2952 KB |
Output is correct |
7 |
Correct |
4 ms |
2952 KB |
Output is correct |
8 |
Correct |
16 ms |
3028 KB |
Output is correct |
9 |
Correct |
16 ms |
3044 KB |
Output is correct |
10 |
Correct |
20 ms |
3052 KB |
Output is correct |
11 |
Correct |
4 ms |
3052 KB |
Output is correct |
12 |
Correct |
23 ms |
3196 KB |
Output is correct |
13 |
Correct |
18 ms |
3196 KB |
Output is correct |
14 |
Correct |
7 ms |
3196 KB |
Output is correct |
15 |
Correct |
15 ms |
3196 KB |
Output is correct |
16 |
Correct |
5 ms |
3196 KB |
Output is correct |
17 |
Correct |
5 ms |
3196 KB |
Output is correct |
18 |
Correct |
4 ms |
3196 KB |
Output is correct |
19 |
Correct |
4 ms |
3196 KB |
Output is correct |
20 |
Correct |
8 ms |
3196 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
2043 ms |
10832 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
5 ms |
2680 KB |
Output is correct |
2 |
Correct |
11 ms |
2788 KB |
Output is correct |
3 |
Correct |
25 ms |
2952 KB |
Output is correct |
4 |
Correct |
5 ms |
2952 KB |
Output is correct |
5 |
Correct |
12 ms |
2952 KB |
Output is correct |
6 |
Correct |
4 ms |
2952 KB |
Output is correct |
7 |
Correct |
4 ms |
2952 KB |
Output is correct |
8 |
Correct |
16 ms |
3028 KB |
Output is correct |
9 |
Correct |
16 ms |
3044 KB |
Output is correct |
10 |
Correct |
20 ms |
3052 KB |
Output is correct |
11 |
Correct |
4 ms |
3052 KB |
Output is correct |
12 |
Correct |
23 ms |
3196 KB |
Output is correct |
13 |
Correct |
18 ms |
3196 KB |
Output is correct |
14 |
Correct |
7 ms |
3196 KB |
Output is correct |
15 |
Correct |
15 ms |
3196 KB |
Output is correct |
16 |
Correct |
5 ms |
3196 KB |
Output is correct |
17 |
Correct |
5 ms |
3196 KB |
Output is correct |
18 |
Correct |
4 ms |
3196 KB |
Output is correct |
19 |
Correct |
4 ms |
3196 KB |
Output is correct |
20 |
Correct |
8 ms |
3196 KB |
Output is correct |
21 |
Execution timed out |
2043 ms |
10832 KB |
Time limit exceeded |
22 |
Halted |
0 ms |
0 KB |
- |