結果

問題 No.2805 Go to School
ユーザー 沙耶花沙耶花
提出日時 2024-07-12 21:17:30
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 351 ms / 2,000 ms
コード長 1,216 bytes
コンパイル時間 4,116 ms
コンパイル使用メモリ 272,028 KB
実行使用メモリ 22,116 KB
最終ジャッジ日時 2024-07-16 01:36:58
合計ジャッジ時間 10,472 ms
ジャッジサーバーID
(参考情報)
judge3 / 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 166 ms
16,896 KB
testcase_05 AC 214 ms
14,220 KB
testcase_06 AC 108 ms
9,216 KB
testcase_07 AC 108 ms
9,344 KB
testcase_08 AC 189 ms
14,488 KB
testcase_09 AC 110 ms
9,292 KB
testcase_10 AC 114 ms
9,148 KB
testcase_11 AC 351 ms
21,016 KB
testcase_12 AC 211 ms
14,596 KB
testcase_13 AC 300 ms
18,592 KB
testcase_14 AC 44 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 154 ms
11,524 KB
testcase_19 AC 98 ms
8,796 KB
testcase_20 AC 244 ms
15,812 KB
testcase_21 AC 296 ms
20,088 KB
testcase_22 AC 123 ms
10,800 KB
testcase_23 AC 208 ms
14,324 KB
testcase_24 AC 212 ms
14,492 KB
testcase_25 AC 59 ms
8,680 KB
testcase_26 AC 224 ms
22,116 KB
testcase_27 AC 148 ms
16,072 KB
testcase_28 AC 12 ms
6,912 KB
testcase_29 AC 23 ms
7,680 KB
testcase_30 AC 85 ms
12,008 KB
testcase_31 AC 112 ms
9,856 KB
testcase_32 AC 229 ms
18,576 KB
testcase_33 AC 261 ms
18,564 KB
testcase_34 AC 2 ms
5,376 KB
testcase_35 AC 2 ms
5,376 KB
testcase_36 AC 98 ms
8,948 KB
testcase_37 AC 107 ms
10,240 KB
testcase_38 AC 203 ms
15,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <bits/stdc++.h>
#include <atcoder/all>
using namespace atcoder;
using mint = modint998244353;
using namespace std;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf32 1000000001
#define Inf64 1000000000000000001
vector<long long> get(vector<vector<pair<int,long long>>> &G, int s){
	int N = G.size();
	vector<long long> d(N,Inf64);
	d[s] = 0;
	priority_queue<pair<long long,int>,vector<pair<long long,int>>,greater<pair<long long,int>>> pq;
	pq.push({0,s});
	while(!pq.empty()){
		auto [c,v] = pq.top();
		pq.pop();
		if(d[v] < c) continue;
		for(auto [u,w] : G[v]){
			if(d[u] > d[v] + w){
				d[u] = d[v] + w;
				pq.push({d[u],u});
			}
		}
	}
	return d;
}
int main(){

	int N,M,L,S,E;
	cin>>N>>M>>L>>S>>E;
	vector<vector<pair<int,long long>>> G(N);
	rep(i,M){
		int a,b;
		long long c;
		cin>>a>>b>>c;
		a--,b--;
		G[a].push_back({b,c});
		G[b].push_back({a,c});
	}
	auto dx = get(G,0), dy = get(G,N-1);
	long long ans = Inf64;
	E += S;
	rep(i,L){
		long long t;
		cin>>t;
		t--;
		long long d0 = dx[t];
		if(d0 >= E)continue;
		if(dy[t]==Inf64)continue;
		d0 = max(d0,(long long)S);
		ans = min(ans,d0+1+dy[t]);
		
	}
	if(ans==Inf64)ans = -1;
	cout<<ans<<endl;
	return 0;
}
0