結果

問題 No.2805 Go to School
ユーザー HIcoderHIcoder
提出日時 2024-08-14 22:54:41
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 434 ms / 2,000 ms
コード長 1,634 bytes
コンパイル時間 1,926 ms
コンパイル使用メモリ 131,196 KB
実行使用メモリ 34,468 KB
最終ジャッジ日時 2024-08-14 22:54:56
合計ジャッジ時間 12,280 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 194 ms
28,672 KB
testcase_05 AC 349 ms
30,532 KB
testcase_06 AC 166 ms
15,272 KB
testcase_07 AC 159 ms
17,944 KB
testcase_08 AC 314 ms
32,596 KB
testcase_09 AC 140 ms
15,436 KB
testcase_10 AC 133 ms
16,040 KB
testcase_11 AC 401 ms
33,996 KB
testcase_12 AC 231 ms
22,612 KB
testcase_13 AC 358 ms
30,868 KB
testcase_14 AC 42 ms
8,192 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 1 ms
5,376 KB
testcase_17 AC 1 ms
5,376 KB
testcase_18 AC 198 ms
20,992 KB
testcase_19 AC 116 ms
13,348 KB
testcase_20 AC 327 ms
27,828 KB
testcase_21 AC 434 ms
33,484 KB
testcase_22 AC 158 ms
16,640 KB
testcase_23 AC 282 ms
23,272 KB
testcase_24 AC 268 ms
25,344 KB
testcase_25 AC 66 ms
12,184 KB
testcase_26 AC 293 ms
34,468 KB
testcase_27 AC 191 ms
25,984 KB
testcase_28 AC 14 ms
9,088 KB
testcase_29 AC 26 ms
10,496 KB
testcase_30 AC 101 ms
18,432 KB
testcase_31 AC 155 ms
16,460 KB
testcase_32 AC 279 ms
33,512 KB
testcase_33 AC 326 ms
30,444 KB
testcase_34 AC 3 ms
5,376 KB
testcase_35 AC 3 ms
5,376 KB
testcase_36 AC 121 ms
14,196 KB
testcase_37 AC 131 ms
15,744 KB
testcase_38 AC 244 ms
25,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<string>
#include<queue>
#include<vector>
#include<cassert>
#include<random>
#include<set>
#include<map>
#include<cassert>
#include<unordered_map>
#include<bitset>
#include<numeric>
#include<algorithm>
using namespace std;
typedef long long ll;
const int inf=1<<30;
const ll INF=1LL<<62;
typedef pair<int,ll> P;
typedef pair<int,P> PP; 
const ll MOD=998244353;

int main(){
    int N,M,L,S,E;
    cin>>N>>M>>L>>S>>E;
    vector<vector<P>> G(2*N);
    for(int i=0;i<M;i++){
        int a,b,t;
        cin>>a>>b>>t;
        a--;b--;
        G[a].push_back(P(b,t));
        G[b].push_back(P(a,t));
        G[a+N].push_back(P(b+N,t));
        G[b+N].push_back(P(a+N,t));
    }
    vector<bool> T(2*N);
    for(int i=0;i<L;i++){
        int a;
        cin>>a;
        a--;
        T[a]=true;
    }
    vector<ll> dist(2*N,INF);

    priority_queue<pair<ll,int>,vector<pair<ll,int>>,greater<pair<ll,int>>> pq;
    pq.push({0,0});
    if(T[0]){
        pq.push({S+1,0+N});
    }
    
    while(!pq.empty()){
        auto [d,v]=pq.top();pq.pop();

        if(dist[v]<=d) continue;
        //dist[v]>d
        dist[v]=d;

        for(auto [to,c]:G[v]){
            if(T[to] && d+c<=S){
                //頂点toに止まることができる
                pq.push({S+1,N+to});
            }

            if(d+c<dist[to]){
                pq.push({d+c,to});
            }

            if(S<=d+c && d+c<S+E && T[to]){
                //頂点toに止まって用をたす
                pq.push({d+c+1,to+N});
            }
        }
    }

    //N+N-1
    ll ans=dist[2*N-1];
    cout<<(ans==INF?-1:ans)<<endl;
}
0