結果
問題 | No.2805 Go to School |
ユーザー | elphe |
提出日時 | 2024-07-19 16:51:41 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 203 ms / 2,000 ms |
コード長 | 2,040 bytes |
コンパイル時間 | 1,260 ms |
コンパイル使用メモリ | 105,120 KB |
実行使用メモリ | 18,928 KB |
最終ジャッジ日時 | 2024-07-19 16:51:55 |
合計ジャッジ時間 | 5,983 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | 74 ms
12,772 KB |
testcase_05 | AC | 90 ms
9,216 KB |
testcase_06 | AC | 54 ms
7,040 KB |
testcase_07 | AC | 41 ms
6,528 KB |
testcase_08 | AC | 74 ms
9,088 KB |
testcase_09 | AC | 53 ms
7,040 KB |
testcase_10 | AC | 45 ms
6,532 KB |
testcase_11 | AC | 203 ms
17,320 KB |
testcase_12 | AC | 115 ms
11,420 KB |
testcase_13 | AC | 159 ms
13,800 KB |
testcase_14 | AC | 24 ms
5,760 KB |
testcase_15 | AC | 1 ms
5,376 KB |
testcase_16 | AC | 2 ms
5,376 KB |
testcase_17 | AC | 2 ms
5,376 KB |
testcase_18 | AC | 77 ms
8,284 KB |
testcase_19 | AC | 54 ms
7,424 KB |
testcase_20 | AC | 121 ms
10,932 KB |
testcase_21 | AC | 198 ms
17,152 KB |
testcase_22 | AC | 105 ms
9,344 KB |
testcase_23 | AC | 118 ms
11,156 KB |
testcase_24 | AC | 119 ms
10,980 KB |
testcase_25 | AC | 36 ms
7,880 KB |
testcase_26 | AC | 139 ms
18,928 KB |
testcase_27 | AC | 73 ms
15,104 KB |
testcase_28 | AC | 9 ms
6,784 KB |
testcase_29 | AC | 14 ms
7,552 KB |
testcase_30 | AC | 39 ms
11,776 KB |
testcase_31 | AC | 59 ms
8,832 KB |
testcase_32 | AC | 105 ms
14,100 KB |
testcase_33 | AC | 152 ms
15,740 KB |
testcase_34 | AC | 2 ms
5,376 KB |
testcase_35 | AC | 2 ms
5,376 KB |
testcase_36 | AC | 60 ms
7,808 KB |
testcase_37 | AC | 65 ms
9,088 KB |
testcase_38 | AC | 144 ms
13,568 KB |
ソースコード
#include <iostream> #include <queue> #include <vector> #include <climits> #include <functional> using namespace std; int main() { cin.tie(nullptr); ios::sync_with_stdio(false); int N, M, L, S, E, i, a, b, t; long long ans = LONG_LONG_MAX; cin >> N >> M >> L >> S >> E; vector<vector<pair<int, int>>> edges(N, vector<pair<int, int>>()); vector<int> T(L); vector<long long> dist_from_start(N, LONG_LONG_MAX), dist_from_goal(N, LONG_LONG_MAX); for (i = 0; i != M; ++i) { cin >> a >> b >> t, --a, --b; edges[a].emplace_back(t, b); edges[b].emplace_back(t, a); } for (i = 0; i != L; ++i) cin >> T[i], --T[i]; priority_queue<pair<long long, int>, vector<pair<long long, int>>, greater<pair<long long, int>>> pq; pq.emplace(dist_from_start[0] = 0, 0); while (!pq.empty()) { if (pq.top().first == dist_from_start[pq.top().second]) { for (i = 0; i != edges[pq.top().second].size(); ++i) if (dist_from_start[edges[pq.top().second][i].second] > pq.top().first + edges[pq.top().second][i].first) pq.emplace(dist_from_start[edges[pq.top().second][i].second] = pq.top().first + edges[pq.top().second][i].first, edges[pq.top().second][i].second); } pq.pop(); } pq.emplace(dist_from_goal[N - 1] = 0, N - 1); while (!pq.empty()) { if (pq.top().first == dist_from_goal[pq.top().second]) { for (i = 0; i != edges[pq.top().second].size(); ++i) if (dist_from_goal[edges[pq.top().second][i].second] > pq.top().first + edges[pq.top().second][i].first) pq.emplace(dist_from_goal[edges[pq.top().second][i].second] = pq.top().first + edges[pq.top().second][i].first, edges[pq.top().second][i].second); } pq.pop(); } for (i = 0; i != L; ++i) if (dist_from_start[T[i]] < S + E && dist_from_goal[T[i]] != LONG_LONG_MAX && max(static_cast<long long>(S), dist_from_start[T[i]]) + 1 + dist_from_goal[T[i]] < ans) ans = max(static_cast<long long>(S), dist_from_start[T[i]]) + 1 + dist_from_goal[T[i]]; if (ans == LONG_LONG_MAX) cout << "-1\n"; else cout << ans << '\n'; return 0; }