結果

問題 No.2805 Go to School
ユーザー keisuke6keisuke6
提出日時 2024-07-04 22:35:02
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 417 ms / 2,000 ms
コード長 1,382 bytes
コンパイル時間 2,716 ms
コンパイル使用メモリ 219,108 KB
実行使用メモリ 22,264 KB
最終ジャッジ日時 2024-07-16 01:36:40
合計ジャッジ時間 10,211 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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,940 KB
testcase_04 AC 175 ms
15,872 KB
testcase_05 AC 244 ms
13,696 KB
testcase_06 AC 128 ms
8,960 KB
testcase_07 AC 118 ms
9,088 KB
testcase_08 AC 212 ms
14,232 KB
testcase_09 AC 122 ms
8,960 KB
testcase_10 AC 129 ms
8,960 KB
testcase_11 AC 417 ms
21,056 KB
testcase_12 AC 237 ms
14,084 KB
testcase_13 AC 310 ms
17,184 KB
testcase_14 AC 48 ms
6,944 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 1 ms
6,944 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 159 ms
10,880 KB
testcase_19 AC 110 ms
8,704 KB
testcase_20 AC 279 ms
14,916 KB
testcase_21 AC 340 ms
18,716 KB
testcase_22 AC 159 ms
11,648 KB
testcase_23 AC 261 ms
14,652 KB
testcase_24 AC 293 ms
14,036 KB
testcase_25 AC 70 ms
8,860 KB
testcase_26 AC 238 ms
22,264 KB
testcase_27 AC 215 ms
16,960 KB
testcase_28 AC 16 ms
6,944 KB
testcase_29 AC 32 ms
7,552 KB
testcase_30 AC 111 ms
13,284 KB
testcase_31 AC 155 ms
10,880 KB
testcase_32 AC 253 ms
18,936 KB
testcase_33 AC 237 ms
18,216 KB
testcase_34 AC 2 ms
6,940 KB
testcase_35 AC 2 ms
6,944 KB
testcase_36 AC 126 ms
9,600 KB
testcase_37 AC 162 ms
9,856 KB
testcase_38 AC 258 ms
14,272 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;i++){
    	dist[i] = max(dist[i],S);
    	if(S <= dist[i] && dist[i] < S+E && T.count(i)){
    		dist[i]++;
    		pq.push({dist[i],i});
    	}
    	else{
    		dist[i] = 1e18;
    	}
    }
    //cout<<dist[N-1]<<endl;
    if(dist[N-1] > S+E) dist[N-1] = 1e18;
    else{
    	cout<<dist[N-1]<<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])<<endl;
}
0