結果

問題 No.2805 Go to School
ユーザー highlighterhighlighter
提出日時 2024-07-04 17:14:50
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 491 ms / 2,000 ms
コード長 1,313 bytes
コンパイル時間 3,595 ms
コンパイル使用メモリ 261,948 KB
実行使用メモリ 35,892 KB
最終ジャッジ日時 2024-07-16 01:36:14
合計ジャッジ時間 11,541 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 204 ms
26,876 KB
testcase_05 AC 254 ms
19,544 KB
testcase_06 AC 134 ms
12,120 KB
testcase_07 AC 122 ms
12,076 KB
testcase_08 AC 214 ms
19,408 KB
testcase_09 AC 135 ms
12,312 KB
testcase_10 AC 130 ms
12,528 KB
testcase_11 AC 491 ms
32,284 KB
testcase_12 AC 292 ms
20,820 KB
testcase_13 AC 427 ms
27,108 KB
testcase_14 AC 62 ms
8,176 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 195 ms
15,376 KB
testcase_19 AC 132 ms
11,836 KB
testcase_20 AC 309 ms
21,844 KB
testcase_21 AC 435 ms
31,952 KB
testcase_22 AC 192 ms
15,588 KB
testcase_23 AC 294 ms
20,384 KB
testcase_24 AC 289 ms
20,196 KB
testcase_25 AC 82 ms
11,560 KB
testcase_26 AC 288 ms
35,892 KB
testcase_27 AC 227 ms
25,760 KB
testcase_28 AC 20 ms
9,068 KB
testcase_29 AC 38 ms
10,548 KB
testcase_30 AC 125 ms
18,328 KB
testcase_31 AC 165 ms
14,336 KB
testcase_32 AC 265 ms
28,776 KB
testcase_33 AC 313 ms
29,964 KB
testcase_34 AC 2 ms
6,940 KB
testcase_35 AC 2 ms
6,940 KB
testcase_36 AC 148 ms
12,604 KB
testcase_37 AC 167 ms
15,464 KB
testcase_38 AC 322 ms
24,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

vector<long long> dijkstra(vector<vector<pair<int,long long>>> G,int v){
	vector<bool> kakutei((int)(G.size()),false);
	vector<long long> cur((int)(G.size()),2000000000000LL);
	priority_queue<pair<long long,int>,vector<pair<long long,int>>,greater<pair<long long,int>>> que;
	cur[v]=0;
	que.push(make_pair(cur[v],v));
	while(!que.empty()){
		int pos=que.top().second;
		que.pop();
		if(kakutei[pos]==true){
			continue;
		}
		kakutei[pos]=true;
		for(pair<int,int> i : G[pos]){
			int nex=i.first;
			long long cost=i.second;
			if(cur[nex]>cur[pos]+cost){
				cur[nex]=cur[pos]+cost;
				que.push(make_pair(cur[nex],nex));
			}
		}
	}
	return cur;
}

int main(){
	int N,M,L;
	long long S,E;
	cin >> N >> M >> L >> S >> E;
	vector<vector<pair<int,long long>>> G(N);
	for(int i=0;i<M;i++){
		int a,b;
		long long t;
		cin >> a >> b >> t;
		a--; b--;
		G[a].push_back(make_pair(b,t));
		G[b].push_back(make_pair(a,t));
	}
	vector<long long> dist1=dijkstra(G,0);
	vector<long long> dist2=dijkstra(G,N-1);
	long long ans=2000000000000LL;
	for(;L--;){
		int t;
		cin >> t;
		t--;
		long long d=dist1[t];
		if(d>=S+E){
			continue;
		}
		d=max(d,S);
		d+=dist2[t]+1;
		ans=min(ans,d);
	}
	if(ans==2000000000000){
		cout << -1 << endl;
		return 0;
	}
	cout << ans << endl;
}
0