結果

問題 No.2805 Go to School
ユーザー a1048576a1048576
提出日時 2024-07-12 21:33:05
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 350 ms / 2,000 ms
コード長 1,146 bytes
コンパイル時間 1,774 ms
コンパイル使用メモリ 179,152 KB
実行使用メモリ 21,940 KB
最終ジャッジ日時 2024-07-16 01:38:10
合計ジャッジ時間 8,159 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 167 ms
16,768 KB
testcase_05 AC 212 ms
13,696 KB
testcase_06 AC 107 ms
9,088 KB
testcase_07 AC 101 ms
9,088 KB
testcase_08 AC 183 ms
14,276 KB
testcase_09 AC 104 ms
9,216 KB
testcase_10 AC 110 ms
9,056 KB
testcase_11 AC 350 ms
20,656 KB
testcase_12 AC 197 ms
14,140 KB
testcase_13 AC 301 ms
17,904 KB
testcase_14 AC 43 ms
6,144 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 148 ms
11,136 KB
testcase_19 AC 92 ms
8,576 KB
testcase_20 AC 230 ms
15,216 KB
testcase_21 AC 297 ms
19,840 KB
testcase_22 AC 131 ms
10,624 KB
testcase_23 AC 213 ms
13,932 KB
testcase_24 AC 200 ms
13,912 KB
testcase_25 AC 58 ms
8,512 KB
testcase_26 AC 223 ms
21,940 KB
testcase_27 AC 144 ms
16,216 KB
testcase_28 AC 13 ms
6,912 KB
testcase_29 AC 23 ms
7,552 KB
testcase_30 AC 88 ms
12,032 KB
testcase_31 AC 111 ms
10,368 KB
testcase_32 AC 226 ms
18,048 KB
testcase_33 AC 251 ms
18,960 KB
testcase_34 AC 2 ms
5,376 KB
testcase_35 AC 2 ms
5,376 KB
testcase_36 AC 98 ms
8,832 KB
testcase_37 AC 109 ms
9,984 KB
testcase_38 AC 232 ms
15,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define int long long
signed main() {
	int n,m,c,s,t;
	cin >> n >> m >> c >> s >> t;
	vector<vector<pair<int,int>>> a(n);
	while(m--) {
		int x,y,w;
		cin >> x >> y >> w;
		x--,y--;
		a[x].push_back({y,w});
		a[y].push_back({x,w});
	}
	vector<int> v(n,1e18),w(n,1e18);
	priority_queue<pair<int,int>,vector<pair<int,int>>,greater<pair<int,int>>> q;
	v[0] = 0;
	w[n-1] = 0;
	q.push({0,0});
	while(q.size() > 0) {
		int x,e;
		tie(e,x) = q.top();
		q.pop();
		if(v[x] != e) continue;
		int l = a[x].size();
		for(int i = 0; i < l; i++) {
			int y,f;
			tie(y,f) = a[x][i];
			if(v[y] > v[x]+f) {
				v[y] = v[x]+f;
				q.push({v[y],y});
			}
		}
	}
	q.push({0,n-1});
	while(q.size() > 0) {
		int x,e;
		tie(e,x) = q.top();
		q.pop();
		if(w[x] != e) continue;
		int l = a[x].size();
		for(int i = 0; i < l; i++) {
			int y,f;
			tie(y,f) = a[x][i];
			if(w[y] > w[x]+f) {
				w[y] = w[x]+f;
				q.push({w[y],y});
			}
		}
	}
	int ans = 1e18;
	while(c--) {
		int x;
		cin >> x;
		x--;
		if(v[x] < s+t) ans = min(ans,max(s,v[x])+1+w[x]);
	}
	if(ans >= 1e16) cout << -1 << endl;
	else cout << ans << endl;
}
0