結果
問題 | No.2805 Go to School |
ユーザー | anonymously |
提出日時 | 2024-07-12 23:51:12 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,002 bytes |
コンパイル時間 | 2,977 ms |
コンパイル使用メモリ | 221,076 KB |
実行使用メモリ | 40,428 KB |
最終ジャッジ日時 | 2024-07-12 23:51:24 |
合計ジャッジ時間 | 10,303 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | WA | - |
testcase_03 | AC | 3 ms
6,944 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 120 ms
9,088 KB |
testcase_10 | AC | 318 ms
36,852 KB |
testcase_11 | AC | 202 ms
20,352 KB |
testcase_12 | AC | 330 ms
25,832 KB |
testcase_13 | AC | 49 ms
9,600 KB |
testcase_14 | AC | 3 ms
6,944 KB |
testcase_15 | AC | 2 ms
6,944 KB |
testcase_16 | AC | 2 ms
6,940 KB |
testcase_17 | AC | 172 ms
13,696 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 59 ms
12,352 KB |
testcase_25 | AC | 183 ms
34,956 KB |
testcase_26 | AC | 209 ms
36,968 KB |
testcase_27 | AC | 30 ms
15,872 KB |
testcase_28 | AC | 42 ms
17,472 KB |
testcase_29 | AC | 136 ms
28,140 KB |
testcase_30 | AC | 151 ms
16,200 KB |
testcase_31 | AC | 234 ms
29,740 KB |
testcase_32 | WA | - |
testcase_33 | AC | 2 ms
6,944 KB |
testcase_34 | AC | 2 ms
6,944 KB |
testcase_35 | WA | - |
testcase_36 | AC | 143 ms
18,916 KB |
testcase_37 | AC | 242 ms
31,148 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; class Dijkstra { int N; long long S; long long E; const vector<vector<pair<int, long long>>> &G; const vector<bool> &T; public: Dijkstra(int N, long long S, long long E, const vector<vector<pair<int, long long>>> &G, const vector<bool> &T) : N(N), S(S), E(E), G(G), T(T) { } long long dijkstra() { vector<vector<long long>> dist(N, vector<long long>(2, -(1LL << 62))); vector<vector<bool>> visited(N, vector<bool>(2, false)); queue<pair<long long, pair<int, bool>>> Q; dist[0][false] = 0LL; Q.push( { dist[0][false], { 0, false } }); while (!Q.empty()) { pair<long long, pair<int, bool>> q = Q.front(); Q.pop(); if (q.second.first == N - 1 && q.second.second) { return -dist[N - 1][true]; } if (visited[q.second.first][q.second.second]) continue; visited[q.second.first][q.second.second] = true; if (!q.second.second && -dist[q.second.first][q.second.second] >= S + E) continue; if (!q.second.second && T[q.second.first]) { long long d = min(-S - 1, q.first - 1); if (d > dist[q.second.first][true]) { dist[q.second.first][true] = d; Q.push( { d, { q.second.first, true } }); } } for (pair<int, long long> u : G[q.second.first]) { long long d = dist[q.second.first][q.second.second] - u.second; if (d > dist[u.first][q.second.second]) { dist[u.first][q.second.second] = d; Q.push( { d, { u.first, q.second.second } }); } } } return -1; } ~Dijkstra() { } }; int main() { int n, m, l; long long s, e; cin >> n >> m >> l >> s >> e; vector<vector<pair<int, long long>>> G(n); for (int i = 0; i < m; i++) { int a, b; long long t; cin >> a >> b >> t; a -= 1; b -= 1; 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] = true; } Dijkstra dijkstra(n, s, e, G, T); cout << dijkstra.dijkstra() << endl; return 0; }