結果
問題 | No.416 旅行会社 |
ユーザー | ant2357 |
提出日時 | 2018-02-23 00:03:38 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 584 ms / 4,000 ms |
コード長 | 1,140 bytes |
コンパイル時間 | 2,625 ms |
コンパイル使用メモリ | 220,636 KB |
実行使用メモリ | 28,300 KB |
最終ジャッジ日時 | 2024-05-08 15:35:10 |
合計ジャッジ時間 | 9,165 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 188 ms
17,664 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 | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 3 ms
5,376 KB |
testcase_08 | AC | 6 ms
5,376 KB |
testcase_09 | AC | 26 ms
5,376 KB |
testcase_10 | AC | 274 ms
17,528 KB |
testcase_11 | AC | 265 ms
17,664 KB |
testcase_12 | AC | 261 ms
17,536 KB |
testcase_13 | AC | 187 ms
17,536 KB |
testcase_14 | AC | 573 ms
28,172 KB |
testcase_15 | AC | 571 ms
28,296 KB |
testcase_16 | AC | 558 ms
27,540 KB |
testcase_17 | AC | 575 ms
28,300 KB |
testcase_18 | AC | 584 ms
28,172 KB |
testcase_19 | AC | 429 ms
22,868 KB |
testcase_20 | AC | 422 ms
22,912 KB |
ソースコード
#include "bits/stdc++.h" using namespace std; using ll = long long; using ld = long double; const int INF = (1 << 30) - 1; const ll INF64 = ((ll)1 << 62) - 1; const double PI = 3.1415926535897932384626433832795; const int dx[] = { 0, 1, 0, -1 }; const int dy[] = { -1, 0, 1, 0 }; int main() { ios::sync_with_stdio(false); cin.tie(0); int n, m, q; cin >> n >> m >> q; vector<map<int, int>> g(n); for (int i = 0; i < m; i++) { ll a, b; cin >> a >> b; a--; b--; g[a][b] = g[b][a] = INF; } for (int i = 0; i < q; i++) { int c, d; cin >> c >> d; c--; d--; g[c][d] = g[d][c] = i + 1; } priority_queue<pair<int, int>> pq; vector<int> ans(n); ans[0] = INF; pq.emplace(INF, 0); vector<bool> used(n); while (!pq.empty()) { int c = pq.top().first; int i = pq.top().second; pq.pop(); if (used[i]) { continue; } used[i] = true; for (auto p : g[i]) { int j = p.first; int cc = p.second; if (ans[j] < min(ans[i], cc)) { ans[j] = min(ans[i], cc); pq.emplace(ans[j], j); } } } for (int i = 1; i < n; i++) { cout << (ans[i] == INF ? -1 : ans[i]) << endl; } return 0; }