結果
問題 | No.416 旅行会社 |
ユーザー | 🍮かんプリン |
提出日時 | 2020-06-02 01:25:58 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,528 bytes |
コンパイル時間 | 1,745 ms |
コンパイル使用メモリ | 179,564 KB |
実行使用メモリ | 18,048 KB |
最終ジャッジ日時 | 2024-11-22 18:41:16 |
合計ジャッジ時間 | 9,504 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 256 ms
11,008 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 1 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 | 296 ms
10,880 KB |
testcase_11 | AC | 288 ms
15,616 KB |
testcase_12 | AC | 275 ms
15,744 KB |
testcase_13 | AC | 273 ms
15,616 KB |
testcase_14 | AC | 565 ms
16,384 KB |
testcase_15 | AC | 579 ms
17,152 KB |
testcase_16 | AC | 574 ms
18,048 KB |
testcase_17 | AC | 567 ms
17,152 KB |
testcase_18 | AC | 568 ms
16,924 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
ソースコード
/** * @FileName a.cpp * @Author kanpurin * @Created 2020.06.02 01:25:55 **/ #include "bits/stdc++.h" using namespace std; typedef long long ll; // UnionFind class UnionFind { private: vector<int> par; public: UnionFind(int n) { par.resize(n, -1); } int root(int x) { if (par[x] < 0) return x; return par[x] = root(par[x]); } bool unite(int x, int y) { int rx = root(x); int ry = root(y); if (rx == ry) return false; if (size(rx) < size(ry)) swap(rx, ry); par[rx] += par[ry]; par[ry] = rx; return true; } bool same(int x, int y) { int rx = root(x); int ry = root(y); return rx == ry; } int size(int x) { return -par[root(x)]; } }; vector<vector<int>> g; vector<int> ans; void dfs(int v, int c) { ans[v] = c; for(int u : g[v]) { if (ans[u] != -2) continue; dfs(u,c); } } int main() { int n,m,q;cin >> n >> m >> q; set<pair<int,int>> st; for (int i = 0; i < m; i++) { int u,v;cin >> u >> v; u--;v--; if (u > v) swap(u,v); st.insert({u,v}); } vector<pair<int,int>> query(q); g.resize(n); for(int i = 0; i < q; i++) { int u,v;cin >> u >> v; u--;v--; if (u > v) swap(u,v); query[i] = {u,v}; st.erase({u,v}); } ans.resize(n,-2); UnionFind uf(n); for(auto p : st) { uf.unite(p.first,p.second); g[p.first].push_back(p.second); g[p.second].push_back(p.first); } dfs(0,-1); for(int i = q - 1; i >= 0; i--) { if (uf.same(query[i].first,0) && !uf.same(query[i].second,0)) { uf.unite(query[i].first,query[i].second); g[query[i].first].push_back(query[i].second); g[query[i].second].push_back(query[i].first); dfs(query[i].second,i + 1); } else if (!uf.same(query[i].first,0) && uf.same(query[i].second,0)) { uf.unite(query[i].first,query[i].second); g[query[i].first].push_back(query[i].second); g[query[i].second].push_back(query[i].first); dfs(query[i].first,i + 1); } else { uf.unite(query[i].first,query[i].second); g[query[i].first].push_back(query[i].second); g[query[i].second].push_back(query[i].first); } } for (int i = 0; i < n-1; i++) { cout << ans[i + 1] << endl; } return 0; }