結果
問題 | No.416 旅行会社 |
ユーザー | femto |
提出日時 | 2016-08-26 23:53:24 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,428 bytes |
コンパイル時間 | 2,989 ms |
コンパイル使用メモリ | 103,972 KB |
実行使用メモリ | 31,040 KB |
最終ジャッジ日時 | 2024-11-08 16:37:07 |
合計ジャッジ時間 | 7,289 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 218 ms
17,280 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 229 ms
17,152 KB |
testcase_11 | AC | 231 ms
17,152 KB |
testcase_12 | AC | 246 ms
17,280 KB |
testcase_13 | AC | 220 ms
17,152 KB |
testcase_14 | AC | 493 ms
31,032 KB |
testcase_15 | AC | 501 ms
31,032 KB |
testcase_16 | AC | 479 ms
30,004 KB |
testcase_17 | AC | 493 ms
31,040 KB |
testcase_18 | AC | 502 ms
31,032 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
ソースコード
#include <iostream> #include <fstream> #include <vector> #include <cstring> #include <string> #include <algorithm> #include <iomanip> #include <map> #include <queue> #include <functional> using namespace std; typedef long long W; const W INF = 1 << 25; struct edge { int to; W cost; }; typedef pair<W, int> P; typedef vector<vector <edge > > Graph; void dijkstra(int s, const Graph& G, vector<W>& d) { priority_queue<P> que; fill(d.begin(), d.end(), -1); d[s] = INF; que.push(P(INF, s)); while(!que.empty()) { P p = que.top(); que.pop(); int v = p.second; if(d[v] > p.first) continue; for(int i = 0; i < G[v].size(); i++) { edge e = G[v][i]; if(d[e.to] < min(d[v], e.cost)) { d[e.to] = min(d[v], e.cost); que.push(P(d[e.to], e.to)); } } } } const int MAX = 100010; int N, M, Q; int main() { cin.tie(0); ios::sync_with_stdio(false); map<P, int> m; cin >> N >> M >> Q; for(int i = 0; i < M; i++) { int A, B; cin >> A >> B; m[P(A, B)] = INF; } for(int i = 1; i <= Q; i++) { int A, B; cin >> A >> B; m[P(A, B)] = i; } Graph G(N); for(auto val : m) { int A = val.first.first, B = val.first.second; int T = val.second; G[A - 1].push_back(edge{ B - 1, T }); G[B - 1].push_back(edge{ A - 1, T }); } vector<W> d(N); dijkstra(0, G, d); for(int i = 1; i < N; i++) { if(d[i] == INF) { cout << -1 << endl; } else { cout << d[i] << endl; } } }