結果
問題 | No.416 旅行会社 |
ユーザー | HAHAHA |
提出日時 | 2016-09-01 11:59:28 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 420 ms / 4,000 ms |
コード長 | 1,727 bytes |
コンパイル時間 | 2,120 ms |
コンパイル使用メモリ | 178,876 KB |
実行使用メモリ | 14,780 KB |
最終ジャッジ日時 | 2024-05-08 15:20:20 |
合計ジャッジ時間 | 7,031 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 90 ms
11,080 KB |
testcase_01 | AC | 1 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 | 2 ms
5,376 KB |
testcase_08 | AC | 4 ms
5,376 KB |
testcase_09 | AC | 14 ms
5,376 KB |
testcase_10 | AC | 131 ms
11,008 KB |
testcase_11 | AC | 129 ms
11,332 KB |
testcase_12 | AC | 131 ms
11,208 KB |
testcase_13 | AC | 89 ms
10,880 KB |
testcase_14 | AC | 420 ms
14,208 KB |
testcase_15 | AC | 413 ms
14,336 KB |
testcase_16 | AC | 418 ms
14,336 KB |
testcase_17 | AC | 406 ms
14,336 KB |
testcase_18 | AC | 402 ms
14,208 KB |
testcase_19 | AC | 261 ms
14,720 KB |
testcase_20 | AC | 278 ms
14,780 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:29:30: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 29 | scanf("%d%d", &A, &B), -- A, -- B; | ~~~~~^~~~~~~~~~~~~~~~ main.cpp:36:30: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 36 | scanf("%d%d", &A, &B), -- A, -- B; | ~~~~~^~~~~~~~~~~~~~~~
ソースコード
#include<bits/stdc++.h> using namespace std; // not... struct UnionFind { vector<int> data; void init(int n) { data.assign(n, -1); } bool unionSet(int x, int y) { x = root(x); y = root(y); if(x != y) { if(data[y] < data[x]) swap(x, y); data[x] += data[y]; data[y] = x; } return x != y; } bool findSet(int x, int y) { return root(x) == root(y); } int root(int x) { return data[x] < 0 ? x : data[x] = root(data[x]); } int size(int x) { return -data[root(x)]; } }; int main() { int N; int M; int Q; while(~scanf("%d%d%d", &N, &M, &Q)) { set<pair<int ,int> > edges; for(int i=0;i<M;i++){ int A; int B; scanf("%d%d", &A, &B), -- A, -- B; if(A > B)swap(A, B); edges.insert(make_pair(A, B)); } vector<pair<int, int> > queries(Q); for(int i=0;i<Q;i++){ int A; int B; scanf("%d%d", &A, &B), -- A, -- B; if(A > B)swap(A, B); edges.erase(make_pair(A, B)); queries[i] = make_pair(A, B); } UnionFind uf; uf.init(N); for(auto e : edges) uf.unionSet(e.first, e.second); vector<int> ans(N, 0); for(int i=0;i<N;i++) if(uf.findSet(i, 0)) ans[i] = -1; vector<vector<int>> as(N); for(int i=0;i<N;i++) as[uf.root(i)].push_back(i); for(int i = Q - 1; i >= 0; -- i) { auto e = queries[i]; int x = e.first, y = e.second; x = uf.root(x), y = uf.root(y); if(x == y) continue; if(uf.findSet(0, y)) swap(x, y); vector<int> &v = as[x], &w = as[y]; if(uf.findSet(0, x)) { for(int j : w) ans[j] = i + 1; } if(v.size() < w.size()) v.swap(w); v.insert(v.end(), w.begin(), w.end()); w.clear(); uf.unionSet(x, y); as[uf.root(x)].swap(v); } for(int i = 1; i < N; ++ i) printf("%d\n", ans[i]); } return 0; }