結果

問題 No.2805 Go to School
ユーザー RubikunRubikun
提出日時 2024-07-12 21:13:39
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 180 ms / 2,000 ms
コード長 1,510 bytes
コンパイル時間 2,079 ms
コンパイル使用メモリ 213,616 KB
実行使用メモリ 25,704 KB
最終ジャッジ日時 2024-07-16 01:36:47
合計ジャッジ時間 6,168 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
10,496 KB
testcase_01 AC 4 ms
10,496 KB
testcase_02 AC 4 ms
10,368 KB
testcase_03 AC 4 ms
10,496 KB
testcase_04 AC 78 ms
21,632 KB
testcase_05 AC 94 ms
21,088 KB
testcase_06 AC 57 ms
16,276 KB
testcase_07 AC 49 ms
16,256 KB
testcase_08 AC 81 ms
21,504 KB
testcase_09 AC 58 ms
15,744 KB
testcase_10 AC 46 ms
16,128 KB
testcase_11 AC 165 ms
23,872 KB
testcase_12 AC 101 ms
19,452 KB
testcase_13 AC 143 ms
22,768 KB
testcase_14 AC 22 ms
12,544 KB
testcase_15 AC 4 ms
10,368 KB
testcase_16 AC 5 ms
10,368 KB
testcase_17 AC 4 ms
10,368 KB
testcase_18 AC 81 ms
17,904 KB
testcase_19 AC 57 ms
14,848 KB
testcase_20 AC 127 ms
22,300 KB
testcase_21 AC 180 ms
23,184 KB
testcase_22 AC 75 ms
16,252 KB
testcase_23 AC 115 ms
20,424 KB
testcase_24 AC 120 ms
20,716 KB
testcase_25 AC 39 ms
14,688 KB
testcase_26 AC 144 ms
25,704 KB
testcase_27 AC 74 ms
19,072 KB
testcase_28 AC 9 ms
12,032 KB
testcase_29 AC 13 ms
12,800 KB
testcase_30 AC 37 ms
15,872 KB
testcase_31 AC 75 ms
16,000 KB
testcase_32 AC 116 ms
24,048 KB
testcase_33 AC 165 ms
22,932 KB
testcase_34 AC 6 ms
10,624 KB
testcase_35 AC 4 ms
10,624 KB
testcase_36 AC 61 ms
15,176 KB
testcase_37 AC 61 ms
15,488 KB
testcase_38 AC 96 ms
19,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return true; } return false; }
template<class T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return true; } return false; }
#define all(x) (x).begin(),(x).end()
#define fi first
#define se second
#define mp make_pair
#define si(x) int(x.size())
const int mod=998244353,MAX=300005;
const ll INF=15LL<<58;

vector<pair<int,ll>> G[MAX];
ll dis[MAX][2];
bool OK[MAX];

int main(){
    
    std::ifstream in("text.txt");
    std::cin.rdbuf(in.rdbuf());
    cin.tie(0);
    ios::sync_with_stdio(false);
    
    ll N,M,L,S,E;cin>>N>>M>>L>>S>>E;
    for(int i=0;i<M;i++){
        int a,b,c;cin>>a>>b>>c;
        a--;b--;
        G[a].push_back(mp(b,c));
        G[b].push_back(mp(a,c));
    }
    for(int i=0;i<L;i++){
        int x;cin>>x;x--;
        OK[x]=true;
    }
    
    for(int i=0;i<N;i++) dis[i][0]=dis[i][1]=INF;
    
    priority_queue<tuple<ll,int,int>,vector<tuple<ll,int,int>>,greater<tuple<ll,int,int>>> PQ;
    dis[0][0]=0;
    PQ.push({0,0,0});
    
    while(!PQ.empty()){
        auto [d,u,f]=PQ.top();PQ.pop();
        if(dis[u][f]<d) continue;
        for(auto [to,co]:G[u]){
            if(chmin(dis[to][f],d+co)) PQ.push({d+co,to,f});
        }
        if(f==0&&OK[u]&&d<S+E){
            chmax(d,S);
            if(chmin(dis[u][1],d+1)) PQ.push({d+1,u,1});
        }
    }
    
    if(dis[N-1][1]==INF) cout<<-1<<endl;
    else cout<<dis[N-1][1]<<endl;
}

0