結果

問題 No.2805 Go to School
ユーザー OnjoujiTokiOnjoujiToki
提出日時 2024-07-29 10:49:40
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 337 ms / 2,000 ms
コード長 1,789 bytes
コンパイル時間 1,630 ms
コンパイル使用メモリ 129,796 KB
実行使用メモリ 22,236 KB
最終ジャッジ日時 2024-07-29 10:49:50
合計ジャッジ時間 9,072 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 167 ms
16,768 KB
testcase_05 AC 213 ms
14,096 KB
testcase_06 AC 109 ms
9,216 KB
testcase_07 AC 115 ms
9,220 KB
testcase_08 AC 186 ms
14,364 KB
testcase_09 AC 110 ms
9,292 KB
testcase_10 AC 115 ms
9,020 KB
testcase_11 AC 337 ms
20,892 KB
testcase_12 AC 213 ms
14,468 KB
testcase_13 AC 325 ms
18,592 KB
testcase_14 AC 43 ms
6,016 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 1 ms
5,376 KB
testcase_18 AC 164 ms
11,400 KB
testcase_19 AC 96 ms
8,796 KB
testcase_20 AC 238 ms
15,676 KB
testcase_21 AC 318 ms
20,088 KB
testcase_22 AC 125 ms
10,676 KB
testcase_23 AC 209 ms
14,316 KB
testcase_24 AC 211 ms
14,364 KB
testcase_25 AC 59 ms
8,548 KB
testcase_26 AC 223 ms
22,236 KB
testcase_27 AC 151 ms
16,060 KB
testcase_28 AC 12 ms
6,784 KB
testcase_29 AC 27 ms
7,680 KB
testcase_30 AC 81 ms
11,960 KB
testcase_31 AC 119 ms
9,856 KB
testcase_32 AC 233 ms
18,572 KB
testcase_33 AC 255 ms
18,568 KB
testcase_34 AC 3 ms
5,376 KB
testcase_35 AC 2 ms
5,376 KB
testcase_36 AC 101 ms
8,944 KB
testcase_37 AC 116 ms
10,112 KB
testcase_38 AC 243 ms
15,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <algorithm> 
#include <vector>
#include <map>
#include <set>
#include <utility>
#include <queue>
#include <stack>
#include <cstring>
#include <cstdio>
#include <cmath>
#include <cstdlib>
#include <ctime>
#include <iomanip>
#include <cassert>
#include <memory.h>
#include <functional>
#include <bitset>
#include <unordered_map>
#include <unordered_set>
#include <climits>


int main() {
    int n,m,l,s,e;
    std::cin >> n >> m >> l >> s >> e;
    using edge = std::pair<long long, int>;
    std::vector<std::vector<edge>> g(n);
    
    for (int i = 0; i < m; i++) {
        int u, v, w;
        std::cin >> u >> v >> w;
        u--,v--;
        g[u].emplace_back(v, w);
        g[v].emplace_back(u, w);
    }
    auto dij = [&](int start) -> std::vector<long long> {
        std::vector<long long> dist(n, 1e18);
        dist[start] = 0;
        std::priority_queue<edge, std::vector<edge>, std::greater<edge>> pq;
        pq.push({0, start});
        while (!pq.empty()) {
            auto [d, u] = pq.top();
            pq.pop();
            if (dist[u] != d) continue;
            for (auto [v, w] : g[u]) {
                if (dist[v] > dist[u] + w) {
                    dist[v] = dist[u] + w;
                    pq.push({dist[v], v});
                }
            }
        }
        return dist;
    };
    long long ans = 1e18;
    auto dist1 = dij(0);
    auto dist2 = dij(n - 1);
    for (int i = 0; i < l; i++) {
        int u;
        std::cin >> u;
        u--;
        if (dist1[u] <= s + e) {
            long long leave_time = dist1[u];
            if (dist1[u] < s) leave_time = s;
            ans = std::min(ans, leave_time  + 1 + dist2[u]);
        }
    }
    ans = ans == 1e18? -1:ans;
    std::cout << ans << '\n';
}
0