Submission #00001


ソースコード

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
#include<bits/stdc++.h>
using namespace std;
typedef long long int64;
const int64 INF = 1LL << 58;
struct edge {
int to, cost;
};
int N, M, X, H[100000];
vector< edge > graph[100000];
int64 Dijkstra()
{
typedef pair< int64, int > Pi;
priority_queue< Pi > Que;
vector< int64 > max_height(N, -INF);
Que.push({X, 0});
max_height[0] = X;
while(!Que.empty()) {
int64 height, now;
tie(height, now) = Que.top(); Que.pop();
if(height < max_height[now]) continue;
if(now == N - 1) return(X + H[N - 1] - height * 2);
for(auto e : graph[now]) {
int64 nextHeight = min((int64)H[e.to], height - e.cost);
if(nextHeight > max_height[e.to]) {
max_height[e.to] = nextHeight;
Que.push({nextHeight, e.to});
}
}
}
return(-1);
}
int main()
{
cin >> N >> M >> X;
for(int i = 0; i < N; i++) {
cin >> H[i];
}
for(int i = 0; i < M; i++) {
int A, B, T;
cin >> A >> B >> T;
--A, --B;
if(H[A] - T >= 0) graph[A].push_back((edge){B, T});
if(H[B] - T >= 0) graph[B].push_back((edge){A, T});
}
cout << Dijkstra() << endl;
}

ステータス

項目 データ
問題 0001 - フクロモモンガ (Sugar Glider)
ユーザー名 ei1333
投稿日時 2016-01-20 16:42:37
言語 C++11
状態 Accepted
得点 100
ソースコード長 1169 Byte
最大実行時間 298 ms
最大メモリ使用量 139540 KB

セット

セット 得点 Cases
1 Subtask1 25 / 25 01-*
2 Subtask2 25 / 25 02-*
3 Subtask3 50 / 50 01-*, 02-*, 03-*

テストケース

ファイル名 状態 実行時間 メモリ使用量 #
01-01.txt AC 54 ms 2908 KB
1
3
01-02.txt AC 29 ms 3064 KB
1
3
01-03.txt AC 17 ms 3152 KB
1
3
01-04.txt AC 53 ms 2876 KB
1
3
01-05.txt AC 52 ms 3028 KB
1
3
01-06.txt AC 38 ms 2904 KB
1
3
01-07.txt AC 87 ms 3084 KB
1
3
01-08.txt AC 17 ms 3120 KB
1
3
01-09.txt AC 16 ms 3224 KB
1
3
01-10.txt AC 14 ms 3208 KB
1
3
01-11.txt AC 14 ms 3068 KB
1
3
01-12.txt AC 13 ms 3124 KB
1
3
01-13.txt AC 16 ms 3220 KB
1
3
01-14.txt AC 12 ms 3192 KB
1
3
01-15.txt AC 15 ms 3360 KB
1
3
01-16.txt AC 15 ms 3356 KB
1
3
01-17.txt AC 36 ms 3260 KB
1
3
01-18.txt AC 14 ms 3300 KB
1
3
01-19.txt AC 11 ms 3324 KB
1
3
01-20.txt AC 39 ms 3236 KB
1
3
02-01.txt AC 290 ms 14136 KB
2
3
02-02.txt AC 248 ms 24896 KB
2
3
02-03.txt AC 172 ms 23984 KB
2
3
02-04.txt AC 298 ms 32760 KB
2
3
02-05.txt AC 216 ms 36488 KB
2
3
02-06.txt AC 37 ms 27608 KB
2
3
02-07.txt AC 246 ms 34052 KB
2
3
02-08.txt AC 280 ms 46372 KB
2
3
02-09.txt AC 256 ms 45876 KB
2
3
02-10.txt AC 172 ms 49092 KB
2
3
02-11.txt AC 58 ms 49064 KB
2
3
02-12.txt AC 167 ms 56484 KB
2
3
02-13.txt AC 123 ms 57912 KB
2
3
02-14.txt AC 207 ms 60392 KB
2
3
02-15.txt AC 45 ms 59100 KB
2
3
02-16.txt AC 228 ms 71932 KB
2
3
02-17.txt AC 58 ms 64052 KB
2
3
02-18.txt AC 57 ms 64988 KB
2
3
02-19.txt AC 112 ms 67032 KB
2
3
02-20.txt AC 58 ms 68508 KB
2
3
03-01.txt AC 229 ms 73588 KB
3
03-02.txt AC 65 ms 75888 KB
3
03-03.txt AC 186 ms 79188 KB
3
03-04.txt AC 129 ms 84912 KB
3
03-05.txt AC 217 ms 93768 KB
3
03-06.txt AC 50 ms 86976 KB
3
03-07.txt AC 236 ms 98668 KB
3
03-08.txt AC 258 ms 104056 KB
3
03-09.txt AC 193 ms 105208 KB
3
03-10.txt AC 227 ms 111804 KB
3
03-11.txt AC 64 ms 104388 KB
3
03-12.txt AC 289 ms 114244 KB
3
03-13.txt AC 248 ms 115408 KB
3
03-14.txt AC 243 ms 121928 KB
3
03-15.txt AC 275 ms 126436 KB
3
03-16.txt AC 276 ms 138168 KB
3
03-17.txt AC 101 ms 132456 KB
3
03-18.txt AC 19 ms 130264 KB
3
03-19.txt AC 221 ms 136484 KB
3
03-20.txt AC 106 ms 139540 KB
3
sample-01.txt AC 28 ms 137188 KB
sample-02.txt AC 15 ms 137252 KB
sample-03.txt AC 11 ms 137184 KB