結果
問題 | No.848 なかよし旅行 |
ユーザー | k |
提出日時 | 2021-01-18 22:14:45 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,618 bytes |
コンパイル時間 | 2,407 ms |
コンパイル使用メモリ | 220,940 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-05-08 10:51:37 |
合計ジャッジ時間 | 9,427 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | WA | - |
testcase_23 | RE | - |
testcase_24 | AC | 1 ms
5,376 KB |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
コンパイルメッセージ
main.cpp: In function 'std::vector<long long int> dijkstra(const std::vector<std::vector<std::pair<int, int> > >&, int)': main.cpp:18:19: warning: 'v' may be used uninitialized [-Wmaybe-uninitialized] 18 | if (d > dist[v]) continue; | ^ main.cpp:17:9: note: 'v' declared here 17 | int v; | ^ main.cpp:18:5: warning: 'd' may be used uninitialized [-Wmaybe-uninitialized] 18 | if (d > dist[v]) continue; | ^~ main.cpp:16:15: note: 'd' was declared here 16 | long long d; | ^
ソースコード
#include <bits/stdc++.h> using namespace std; #define REP(i,n) for(int i=0; i<(int)(n); i++) const long long INF = 1LL<<60; vector<long long> dijkstra(const vector<vector<pair<int, int> > > &edges, int s) { int n = edges.size(); vector<long long> dist(n, INF); set<int> visited; priority_queue<pair<long long, int>, vector<pair<long long, int>>, greater<pair<long long, int>> > Q; Q.emplace(0, s); while (!Q.empty()) { long long d; int v; if (d > dist[v]) continue; visited.insert(v); if (visited.size() == n) break; tie(d, v) = Q.top(); Q.pop(); dist[v] = d; for (auto &[w, cost] : edges[v]) { if (d + cost < dist[w]) { dist[w] = d + cost; Q.emplace(dist[w], w); } } } return dist; } int main() { ios_base::sync_with_stdio(0); cin.tie(0); int n, m, p, q, t; cin >> n >> m >> p >> q >> t; --p, --q; vector<vector<pair<int, int> > > edges(n); for (int i = 0; i < m; i++) { int a, b, c; cin >> a >> b >> c; --a, --b; edges[a].emplace_back(b, c); edges[b].emplace_back(a, c); } vector<long long> dp = dijkstra(edges, p); vector<long long> dq = dijkstra(edges, q); vector<long long> ds = dijkstra(edges, 0); long long ret = -1; for (int i = 0; i < n; i++) { long long tmp; // ずっと一緒 tmp = 2 * ds[i] + dp[i] + dq[i] + dp[q]; if (t >= tmp) ret = t; // 途中で別れる tmp = 2 * ds[i] + 2 * max(dp[i], dq[i]); if (t >= tmp) { ret = max(ret, t - tmp + 2 * ds[i]); } } cout << ret << endl; return 0; }