結果

問題 No.2805 Go to School
ユーザー keisuke6keisuke6
提出日時 2024-07-01 14:09:03
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,356 bytes
コンパイル時間 2,494 ms
コンパイル使用メモリ 217,160 KB
実行使用メモリ 22,192 KB
最終ジャッジ日時 2024-07-04 21:13:38
合計ジャッジ時間 8,062 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 WA -
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 116 ms
9,088 KB
testcase_10 AC 310 ms
21,084 KB
testcase_11 AC 182 ms
14,088 KB
testcase_12 AC 256 ms
17,116 KB
testcase_13 AC 41 ms
6,656 KB
testcase_14 WA -
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 1 ms
5,376 KB
testcase_17 AC 134 ms
10,880 KB
testcase_18 AC 97 ms
8,832 KB
testcase_19 AC 237 ms
14,916 KB
testcase_20 AC 287 ms
18,688 KB
testcase_21 AC 134 ms
11,648 KB
testcase_22 AC 211 ms
14,776 KB
testcase_23 AC 202 ms
14,044 KB
testcase_24 AC 59 ms
8,896 KB
testcase_25 WA -
testcase_26 AC 160 ms
17,024 KB
testcase_27 AC 15 ms
6,528 KB
testcase_28 AC 25 ms
7,552 KB
testcase_29 AC 97 ms
13,440 KB
testcase_30 AC 132 ms
10,880 KB
testcase_31 AC 235 ms
18,912 KB
testcase_32 AC 215 ms
18,340 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 102 ms
9,728 KB
testcase_36 AC 106 ms
9,856 KB
testcase_37 AC 181 ms
14,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define int long long
signed main() {
    int N,M,L,S,E;
    cin>>N>>M>>L>>S>>E;
    vector<vector<pair<int,int>>> G(N);
    for(int i=0;i<M;i++){
    	int a,b,c;
    	cin>>a>>b>>c;
    	a--;
    	b--;
    	G[a].push_back({b,c});
    	G[b].push_back({a,c});
    }
    set<int> T;
    for(int i=0;i<L;i++){
    	int a;
    	cin>>a;
    	T.insert(a-1);
    }
    vector<int> dist(N,1e18);
    dist[0] = 0;
    priority_queue<pair<int,int>,vector<pair<int,int>>,greater<pair<int,int>>> pq;
    pq.push({0,0});
    while(!pq.empty()){
    	int u,w;
    	tie(w,u) = pq.top();
    	pq.pop();
    	if(dist[u] != w) continue;
    	for(auto [v,x]:G[u])if(dist[v] > w+x){
    		dist[v] = w+x;
    		pq.push({dist[v],v});
    	}
    }
    for(int i=0;i<N-1;i++){
    	dist[i] = max(dist[i],S);
    	if(S <= dist[i] && dist[i] < S+E && T.count(i)){
    		pq.push({dist[i],i});
    	}
    	else{
    		dist[i] = 1e18;
    	}
    }
    if(dist[N-1] > S+E) dist[N-1] = 1e18;
    else{
    	cout<<dist[N-1]+(dist[N-1] > S)<<endl;
    	return 0;
    }
    while(!pq.empty()){
    	int u,w;
    	tie(w,u) = pq.top();
    	pq.pop();
    	if(dist[u] != w) continue;
    	for(auto [v,x]:G[u])if(dist[v] > w+x){
    		dist[v] = w+x;
    		pq.push({dist[v],v});
    	}
    }
    cout<<(dist[N-1]+1 > 1e17 ? -1 : dist[N-1]+1)<<endl;
}
0