結果

問題 No.2805 Go to School
ユーザー t98slidert98slider
提出日時 2024-07-19 05:37:09
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 173 ms / 2,000 ms
コード長 1,293 bytes
コンパイル時間 2,113 ms
コンパイル使用メモリ 220,760 KB
実行使用メモリ 20,800 KB
最終ジャッジ日時 2024-07-19 05:37:19
合計ジャッジ時間 8,137 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 1 ms
5,376 KB
testcase_04 AC 93 ms
12,596 KB
testcase_05 AC 75 ms
9,700 KB
testcase_06 AC 47 ms
7,500 KB
testcase_07 AC 45 ms
6,656 KB
testcase_08 AC 61 ms
9,216 KB
testcase_09 AC 46 ms
7,168 KB
testcase_10 AC 39 ms
6,272 KB
testcase_11 AC 134 ms
17,700 KB
testcase_12 AC 77 ms
11,636 KB
testcase_13 AC 109 ms
14,432 KB
testcase_14 AC 18 ms
5,660 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 67 ms
8,868 KB
testcase_19 AC 45 ms
7,376 KB
testcase_20 AC 100 ms
11,944 KB
testcase_21 AC 173 ms
18,260 KB
testcase_22 AC 62 ms
9,700 KB
testcase_23 AC 95 ms
12,420 KB
testcase_24 AC 96 ms
12,148 KB
testcase_25 AC 33 ms
8,052 KB
testcase_26 AC 123 ms
20,800 KB
testcase_27 AC 64 ms
15,000 KB
testcase_28 AC 6 ms
7,040 KB
testcase_29 AC 11 ms
7,488 KB
testcase_30 AC 33 ms
11,416 KB
testcase_31 AC 60 ms
9,036 KB
testcase_32 AC 100 ms
16,784 KB
testcase_33 AC 136 ms
16,532 KB
testcase_34 AC 2 ms
5,376 KB
testcase_35 AC 2 ms
5,376 KB
testcase_36 AC 51 ms
8,164 KB
testcase_37 AC 57 ms
8,920 KB
testcase_38 AC 110 ms
13,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    int n, m, l, s, e;
    cin >> n >> m >> l >> s >> e;
    vector<vector<pair<int,int>>> g(n);
    vector<bool> toilet(n);
    vector<vector<ll>> dp(2, vector<ll>(n, 1ll << 61));
    priority_queue<tuple<ll,int,int>, vector<tuple<ll,int,int>>, greater<tuple<ll,int,int>>> pq;
    for(int i = 0; i < m; i++){
        int u, v, c;
        cin >> u >> v >> c;
        u--, v--;
        g[u].emplace_back(v, c);
        g[v].emplace_back(u, c);
    }
    for(int i = 0; i < l; i++){
        int v;
        cin >> v;
        toilet[--v] = true;
    }
    dp[0][0] = 0;
    pq.emplace(0, 0, 0);
    while(!pq.empty()){
        auto [d, st, v] = pq.top();
        pq.pop();
        if(d > dp[st][v]) continue;
        if(st == 0 && toilet[v] && d < s + e){
            ll t = max((ll)s, d) + 1;
            if(t < dp[1][v]){
                dp[1][v] = t;
                pq.emplace(t, 1, v);
            }
        }
        for(auto [u, c] : g[v]){
            if(d + c >= dp[st][u]) continue;
            dp[st][u] = d + c;
            pq.emplace(dp[st][u], st, u);
        }
    }
    ll ans = dp[1][n - 1];
    if(ans >> 61 & 1) ans = -1;
    cout << ans << '\n';
}
0