結果
問題 | No.2805 Go to School |
ユーザー | anonymously |
提出日時 | 2024-07-13 12:17:04 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 366 ms / 2,000 ms |
コード長 | 2,205 bytes |
コンパイル時間 | 2,529 ms |
コンパイル使用メモリ | 221,160 KB |
実行使用メモリ | 40,672 KB |
最終ジャッジ日時 | 2024-07-16 01:42:18 |
合計ジャッジ時間 | 9,175 ms |
ジャッジサーバーID (参考情報) |
judge4 / 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 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 186 ms
27,684 KB |
testcase_05 | AC | 213 ms
14,968 KB |
testcase_06 | AC | 104 ms
10,496 KB |
testcase_07 | AC | 105 ms
9,600 KB |
testcase_08 | AC | 186 ms
14,720 KB |
testcase_09 | AC | 105 ms
10,496 KB |
testcase_10 | AC | 109 ms
8,960 KB |
testcase_11 | AC | 289 ms
36,864 KB |
testcase_12 | AC | 177 ms
20,408 KB |
testcase_13 | AC | 257 ms
25,856 KB |
testcase_14 | AC | 41 ms
9,600 KB |
testcase_15 | AC | 1 ms
5,376 KB |
testcase_16 | AC | 2 ms
5,376 KB |
testcase_17 | AC | 1 ms
5,376 KB |
testcase_18 | AC | 143 ms
14,020 KB |
testcase_19 | AC | 95 ms
12,416 KB |
testcase_20 | AC | 255 ms
19,448 KB |
testcase_21 | AC | 323 ms
40,672 KB |
testcase_22 | AC | 128 ms
18,560 KB |
testcase_23 | AC | 198 ms
19,712 KB |
testcase_24 | AC | 231 ms
19,468 KB |
testcase_25 | AC | 71 ms
13,124 KB |
testcase_26 | AC | 199 ms
37,936 KB |
testcase_27 | AC | 201 ms
36,992 KB |
testcase_28 | AC | 27 ms
15,840 KB |
testcase_29 | AC | 39 ms
17,488 KB |
testcase_30 | AC | 116 ms
28,216 KB |
testcase_31 | AC | 143 ms
16,512 KB |
testcase_32 | AC | 257 ms
30,312 KB |
testcase_33 | AC | 366 ms
33,392 KB |
testcase_34 | AC | 2 ms
5,376 KB |
testcase_35 | AC | 2 ms
5,376 KB |
testcase_36 | AC | 106 ms
14,080 KB |
testcase_37 | AC | 133 ms
18,944 KB |
testcase_38 | AC | 192 ms
31,228 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; /* void print(const vector<vector<long long>> &A) { for (vector<long long> a : A) { cerr << "{" << -a[0] << ", " << -a[1] << "} "; } cerr << endl; } */ 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 << 63)); vector<vector<bool>> visited(N, vector<bool>(2, false)); priority_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.top(); Q.pop(); if (q.second.first == N - 1 && q.second.second) { //print(dist); 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 } }); } } } //print(dist); 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; }