結果

問題 No.2805 Go to School
ユーザー ja14378ja14378
提出日時 2024-07-12 22:48:48
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 253 ms / 2,000 ms
コード長 1,678 bytes
コンパイル時間 2,272 ms
コンパイル使用メモリ 214,688 KB
実行使用メモリ 18,428 KB
最終ジャッジ日時 2024-07-16 01:41:04
合計ジャッジ時間 6,876 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 84 ms
12,544 KB
testcase_05 AC 100 ms
9,216 KB
testcase_06 AC 58 ms
6,944 KB
testcase_07 AC 49 ms
6,940 KB
testcase_08 AC 81 ms
9,024 KB
testcase_09 AC 57 ms
6,944 KB
testcase_10 AC 50 ms
6,940 KB
testcase_11 AC 253 ms
16,884 KB
testcase_12 AC 140 ms
10,980 KB
testcase_13 AC 198 ms
13,604 KB
testcase_14 AC 26 ms
6,944 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 85 ms
8,032 KB
testcase_19 AC 55 ms
7,168 KB
testcase_20 AC 133 ms
10,596 KB
testcase_21 AC 225 ms
17,140 KB
testcase_22 AC 86 ms
9,344 KB
testcase_23 AC 125 ms
10,776 KB
testcase_24 AC 123 ms
10,516 KB
testcase_25 AC 40 ms
7,412 KB
testcase_26 AC 163 ms
18,428 KB
testcase_27 AC 88 ms
15,040 KB
testcase_28 AC 9 ms
6,940 KB
testcase_29 AC 14 ms
7,552 KB
testcase_30 AC 47 ms
11,576 KB
testcase_31 AC 69 ms
8,548 KB
testcase_32 AC 122 ms
13,568 KB
testcase_33 AC 170 ms
14,836 KB
testcase_34 AC 2 ms
6,940 KB
testcase_35 AC 2 ms
6,940 KB
testcase_36 AC 63 ms
7,808 KB
testcase_37 AC 79 ms
9,216 KB
testcase_38 AC 166 ms
13,548 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
//#include <atcoder/all>
using ll = long long;
#define MOD 1000000007
#define Mod 998244353
const int MAX = 1000000005;
const long long INF = 1000000000000000005LL;
using namespace std;
//using namespace atcoder;
#define MOD 1000000007

using i_i = pair<int, int>;
using ll_i = pair<ll, int>;

int main() {
    ios::sync_with_stdio(0); cin.tie();
    int N, M, L, S, E;
    cin >> N >> M >> L >> S >> E;
    vector<vector<i_i>> G(N);
    for (int i = 0; i < M; i++) {
        int a, b, t;
        cin >> a >> b >> t;
        a--; b--;
        G[a].push_back({b, t});
        G[b].push_back({a, t});
    }
    vector<int> T(L);
    for (int i = 0; i < L; i++) {cin >> T[i]; T[i]--;}
    priority_queue<ll_i, vector<ll_i>, greater<ll_i>> pq;
    vector<ll> dist(N, INF);
    pq.push({0, 0});
    dist[0] = 0;
    while (pq.size()) {
        auto [d, v] = pq.top();
        pq.pop();
        if (d != dist[v]) continue;
        for (auto [nv, c] : G[v]) {
            if (dist[nv] <= d + c) continue;
            dist[nv] = d + c;
            pq.push({d + c, nv});
        }
    }
    vector<ll> dist2(N, INF);
    dist2[N-1] = 0;
    pq.push({0, N-1});
    while (pq.size()) {
        auto [d, v] = pq.top();
        pq.pop();
        if (d != dist2[v]) continue;
        for (auto [nv, c] : G[v]) {
            if (dist2[nv] <= d + c) continue;
            dist2[nv] = d + c;
            pq.push({d + c, nv});
        }
    }
    
    ll ans = INF;
    for (int i = 0; i < L; i++) {
        ll d = dist[T[i]];
        if (d >= S + E) continue;
        ans = min(ans, max((ll)S, d) + 1 + dist2[T[i]]);
    }
    cout << (ans == INF ? -1 : ans) << endl;
}
0