結果

問題 No.2805 Go to School
ユーザー Today03Today03
提出日時 2024-07-12 21:43:31
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,482 bytes
コンパイル時間 2,538 ms
コンパイル使用メモリ 214,372 KB
実行使用メモリ 27,208 KB
最終ジャッジ日時 2024-07-12 21:43:43
合計ジャッジ時間 11,420 ms
ジャッジサーバーID
(参考情報)
judge2 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,884 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 231 ms
14,304 KB
testcase_05 AC 122 ms
9,624 KB
testcase_06 AC 119 ms
9,344 KB
testcase_07 AC 206 ms
14,464 KB
testcase_08 AC 121 ms
9,088 KB
testcase_09 AC 123 ms
9,056 KB
testcase_10 AC 361 ms
20,544 KB
testcase_11 AC 211 ms
14,156 KB
testcase_12 AC 308 ms
17,912 KB
testcase_13 AC 44 ms
6,940 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 2 ms
6,944 KB
testcase_17 AC 179 ms
11,628 KB
testcase_18 AC 107 ms
8,576 KB
testcase_19 AC 273 ms
16,244 KB
testcase_20 AC 327 ms
20,468 KB
testcase_21 AC 174 ms
10,880 KB
testcase_22 AC 257 ms
14,956 KB
testcase_23 AC 236 ms
14,948 KB
testcase_24 AC 70 ms
8,512 KB
testcase_25 AC 266 ms
24,576 KB
testcase_26 AC 180 ms
16,104 KB
testcase_27 AC 13 ms
6,940 KB
testcase_28 AC 25 ms
7,680 KB
testcase_29 AC 95 ms
12,120 KB
testcase_30 AC 148 ms
10,368 KB
testcase_31 TLE -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
const int INF = 1e9 + 10;
const ll INFL = 4e18;

int main() {
    int N, M, L;
    ll S, E;
    cin >> N >> M >> L >> S >> E;

    vector<vector<pair<int, ll>>> G(N);
    for (int i = 0; i < M; i++) {
        int a, b;
        ll t;
        cin >> a >> b >> t;
        a--;
        b--;
        G[a].push_back({b, t});
        G[b].push_back({a, t});
    }

    vector<bool> T(N, false);
    for (int i = 0; i < L; i++) {
        int t;
        cin >> t;
        t--;
        T[t] = true;
    }

    priority_queue<pair<ll, int>, vector<pair<ll, int>>, greater<>> pq;
    pq.push({0, 0});

    vector<ll> D(2 * N, INFL);
    D[0] = 0;

    while (!pq.empty()) {
        auto [nowd, now] = pq.top();
        pq.pop();
        bool done = now >= N;
        int nowv = now % N;

        for (auto [to, cost] : G[nowv]) {
            int nxt = to;
            if (done) {
                nxt += N;
            }
            if (D[nxt] > D[now] + cost) {
                D[nxt] = D[now] + cost;
                pq.push({D[nxt], nxt});
            }
        }

        if (T[nowv] && !done && nowd < S + E) {
            int nxt = now + N;
            ll nxtt = max(S + 1, nowd + 1);
            if (D[nxt] > nxtt) {
                D[nxt] = nxtt;
                pq.push({D[nxt], nxt});
            }
        }
    }

    ll ans = D[N * 2 - 1];
    if (ans == INFL) {
        ans = -1;
    }

    cout << ans << endl;
}
0