結果

問題 No.2805 Go to School
ユーザー k82bk82b
提出日時 2024-07-12 21:47:22
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 211 ms / 2,000 ms
コード長 1,443 bytes
コンパイル時間 2,030 ms
コンパイル使用メモリ 210,988 KB
実行使用メモリ 23,592 KB
最終ジャッジ日時 2024-07-16 01:38:59
合計ジャッジ時間 6,379 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
8,064 KB
testcase_01 AC 4 ms
8,192 KB
testcase_02 AC 5 ms
8,192 KB
testcase_03 AC 4 ms
8,164 KB
testcase_04 AC 75 ms
19,140 KB
testcase_05 AC 91 ms
18,412 KB
testcase_06 AC 55 ms
13,320 KB
testcase_07 AC 46 ms
13,700 KB
testcase_08 AC 76 ms
18,952 KB
testcase_09 AC 60 ms
13,436 KB
testcase_10 AC 51 ms
13,692 KB
testcase_11 AC 211 ms
21,940 KB
testcase_12 AC 114 ms
17,356 KB
testcase_13 AC 170 ms
21,292 KB
testcase_14 AC 25 ms
9,976 KB
testcase_15 AC 5 ms
8,192 KB
testcase_16 AC 4 ms
8,064 KB
testcase_17 AC 5 ms
8,192 KB
testcase_18 AC 81 ms
15,384 KB
testcase_19 AC 54 ms
12,768 KB
testcase_20 AC 118 ms
19,444 KB
testcase_21 AC 200 ms
20,400 KB
testcase_22 AC 79 ms
13,624 KB
testcase_23 AC 123 ms
17,496 KB
testcase_24 AC 114 ms
17,716 KB
testcase_25 AC 37 ms
12,092 KB
testcase_26 AC 157 ms
23,592 KB
testcase_27 AC 80 ms
16,512 KB
testcase_28 AC 9 ms
9,728 KB
testcase_29 AC 15 ms
10,240 KB
testcase_30 AC 41 ms
13,404 KB
testcase_31 AC 62 ms
13,172 KB
testcase_32 AC 104 ms
20,956 KB
testcase_33 AC 165 ms
20,364 KB
testcase_34 AC 6 ms
8,116 KB
testcase_35 AC 4 ms
8,260 KB
testcase_36 AC 56 ms
12,620 KB
testcase_37 AC 61 ms
12,832 KB
testcase_38 AC 133 ms
16,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define REP(i,n)for(int i=0;i<(n);++i)
#define REP1(i,n)for(int i=1;i<=(n);++i)
#define FORE(...)for(auto&&__VA_ARGS__)
#define ALL(x)begin(x),end(x)
#define mset(x,y)memset(x,y,sizeof x)
#define pb push_back
#define eb emplace_back
#define V vector
#define lb(x,y)(lower_bound(begin(x),end(x),y)-begin(x))
#define ub(x,y)(upper_bound(begin(x),end(x),y)-begin(x))
template<class T,class S>inline bool chmin(T&A,S B){return A>B?A=B,1:0;}
template<class T,class S>inline bool chmax(T&A,S B){return A<B?A=B,1:0;}
void fastIO(){ios::sync_with_stdio(false);cin.tie(nullptr);cout.tie(nullptr);}
using Int=long long;
using Real=long double;
using PII=pair<int,int>;
using PLL=pair<Int,Int>;
constexpr Int INF=1001001001001001001LL;
Int N,M,L,S,E;
V<PLL>G[202020];
bool T[202020];
V<Int>dijkstra(Int s){
	V<Int>ret(N,INF);
	ret[s]=0;
	priority_queue<pair<Int,int>>Q;
	Q.push({0,s});
	while(!Q.empty()){
		auto[c,u]=Q.top();
		c=-c;
		Q.pop();
		if(ret[u]<c)continue;
		FORE([v,t]:G[u])if(chmin(ret[v],ret[u]+t)){
			Q.push({-ret[v],v});
		}
	}
	return ret;
}
int main(){
	fastIO();
	cin>>N>>M>>L>>S>>E;
	REP(i,M){
		Int a,b,t;cin>>a>>b>>t;--a;--b;
		G[a].eb(b,t);
		G[b].eb(a,t);
	}
	REP(i,L){
		int t;cin>>t;
		T[--t]=true;
	}
	auto se=dijkstra(0);
	auto mi=dijkstra(N-1);
	Int ans=INF;
	REP(i,N){
		if(T[i]&&se[i]<S+E){
			chmin(ans,mi[i]+max(S,se[i])+1);
		}
	}
	if(ans==INF)ans=-1;
	cout<<ans<<"\n";
}
0