結果
問題 | No.1473 おでぶなおばけさん |
ユーザー | TomorrowNext |
提出日時 | 2021-04-09 22:48:58 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,284 bytes |
コンパイル時間 | 1,960 ms |
コンパイル使用メモリ | 189,960 KB |
実行使用メモリ | 24,588 KB |
最終ジャッジ日時 | 2024-06-25 06:29:42 |
合計ジャッジ時間 | 5,797 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | TLE | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
testcase_48 | -- | - |
ソースコード
#include "bits/stdc++.h" using namespace std; using ll = long long; const int INF = 1 << 30; void Main() { int n, m; cin >> n >> m; vector<map<int, int>> graph(n, map<int, int>()); for (int i = 0; i < m; ++i) { int s, t, d; cin >> s >> t >> d; --s; --t; if (graph[s].count(t) == 0) { graph[s].insert(make_pair(t, d)); graph[t].insert(make_pair(s, d)); } else { graph[s][t] = max(graph[s][t], d); graph[t][s] = max(graph[t][s], d); } } typedef pair<int, int> weight_curr; priority_queue<weight_curr, vector<weight_curr>, greater<weight_curr>> q; vector<int> w(n, -1); int start = 0; q.push(make_pair(INF, start)); w[start] = INF; while (!q.empty()) { int weight = q.top().first; int curr = q.top().second; q.pop(); if (w[curr] > weight) { continue; } for (auto edge : graph[curr]) { int to = edge.first; int wei = edge.second; if (w[to] < min(w[curr], wei)) { w[to] = min(w[curr], wei); q.push(make_pair(w[to], to)); } } } int maxWeight = w[n - 1]; cout << maxWeight << " 1" << endl; return; vector<set<int>> allowed(n, set<int>()); for (int i = 0; i < n; ++i) { for (auto e : graph[i]) { if (e.second >= maxWeight) { allowed[i].insert(e.first); } } } typedef pair<int, int> dist_curr; priority_queue<dist_curr, vector<dist_curr>, greater<dist_curr>> aq; vector<int> d(n, INF); aq.push(make_pair(0, start)); d[start] = 0; while (!aq.empty()) { int dist = aq.top().first; int curr = aq.top().second; aq.pop(); if (d[curr] < dist) { continue; } for (auto to : allowed[curr]) { if (d[to] > d[curr] + 1) { d[to] = d[curr] + 1; aq.push(make_pair(d[to], to)); } } } int minPath = d[n - 1]; cout << maxWeight << " " << minPath << endl; } int main() { std::cout << std::fixed << std::setprecision(15); Main(); return 0; }