結果

問題 No.2805 Go to School
ユーザー OnjoujiTokiOnjoujiToki
提出日時 2024-07-29 10:49:06
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,768 bytes
コンパイル時間 1,581 ms
コンパイル使用メモリ 129,664 KB
実行使用メモリ 22,116 KB
最終ジャッジ日時 2024-07-29 10:49:18
合計ジャッジ時間 12,015 ms
ジャッジサーバーID
(参考情報)
judge2 / 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 WA -
testcase_04 AC 177 ms
16,896 KB
testcase_05 AC 229 ms
14,092 KB
testcase_06 AC 121 ms
9,216 KB
testcase_07 AC 114 ms
9,216 KB
testcase_08 AC 202 ms
14,360 KB
testcase_09 AC 120 ms
9,292 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 2 ms
5,376 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 166 ms
11,396 KB
testcase_19 AC 105 ms
8,796 KB
testcase_20 AC 267 ms
15,680 KB
testcase_21 AC 348 ms
20,088 KB
testcase_22 AC 174 ms
10,680 KB
testcase_23 AC 235 ms
14,316 KB
testcase_24 AC 227 ms
14,364 KB
testcase_25 AC 65 ms
8,552 KB
testcase_26 AC 253 ms
22,116 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 243 ms
18,572 KB
testcase_33 AC 271 ms
18,564 KB
testcase_34 AC 2 ms
5,376 KB
testcase_35 AC 2 ms
5,376 KB
testcase_36 AC 117 ms
8,948 KB
testcase_37 AC 131 ms
10,112 KB
testcase_38 WA -
権限があれば一括ダウンロードができます

ソースコード

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]);
        }
    }
    std::cout << ans << '\n';


    
}
0