結果
問題 | No.416 旅行会社 |
ユーザー | mamekin |
提出日時 | 2016-10-05 17:21:27 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 842 ms / 4,000 ms |
コード長 | 3,342 bytes |
コンパイル時間 | 1,403 ms |
コンパイル使用メモリ | 128,304 KB |
実行使用メモリ | 24,704 KB |
最終ジャッジ日時 | 2024-05-08 15:26:16 |
合計ジャッジ時間 | 10,652 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 414 ms
19,200 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 1 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 | 3 ms
5,376 KB |
testcase_07 | AC | 3 ms
5,376 KB |
testcase_08 | AC | 10 ms
5,376 KB |
testcase_09 | AC | 42 ms
5,376 KB |
testcase_10 | AC | 437 ms
19,200 KB |
testcase_11 | AC | 449 ms
24,680 KB |
testcase_12 | AC | 403 ms
24,704 KB |
testcase_13 | AC | 433 ms
24,704 KB |
testcase_14 | AC | 805 ms
20,108 KB |
testcase_15 | AC | 839 ms
22,656 KB |
testcase_16 | AC | 842 ms
24,064 KB |
testcase_17 | AC | 786 ms
22,144 KB |
testcase_18 | AC | 814 ms
21,576 KB |
testcase_19 | AC | 588 ms
24,204 KB |
testcase_20 | AC | 576 ms
21,888 KB |
ソースコード
#define _USE_MATH_DEFINES #include <cstdio> #include <iostream> #include <sstream> #include <fstream> #include <iomanip> #include <algorithm> #include <cmath> #include <complex> #include <string> #include <vector> #include <list> #include <queue> #include <stack> #include <set> #include <map> #include <bitset> #include <numeric> #include <limits> #include <climits> #include <cfloat> #include <functional> #include <iterator> using namespace std; class UnionFindTree { private: const int n; vector<int> parent; // 親ノード vector<set<int> > child; // 子ノード vector<int> rank; // 木の高さの上限 int find(int i){ if(parent[i] == i){ return i; } else{ child[parent[i]].erase(i); parent[i] = find(parent[i]); child[parent[i]].insert(i); return parent[i]; } } public: UnionFindTree(int n) : n(n){ // コンストラクタ parent.resize(n); child.resize(n); for(int i=0; i<n; ++i){ parent[i] = i; child[i].insert(i); } rank.assign(n, 0); } void unite(int a, int b){ // aとbのグループを併合 if((a = find(a)) != (b = find(b))){ if(rank[a] < rank[b]){ parent[a] = b; child[b].insert(a); } else{ parent[b] = a; child[a].insert(b); if(rank[a] == rank[b]) ++ rank[a]; } } } bool same(int a, int b){ // aとbのグループが同じかを調べる return find(a) == find(b); } void getGroup(int a, vector<int>& group){ // グループ構成を返す set<int> s; queue<int> q; s.insert(a); q.push(a); while(!q.empty()){ int x = q.front(); q.pop(); if(s.find(parent[x]) == s.end()){ s.insert(parent[x]); q.push(parent[x]); } for(int y : child[x]){ if(s.find(y) == s.end()){ s.insert(y); q.push(y); } } } group = vector<int>(s.begin(), s.end()); } }; int main() { int n, m, q; cin >> n >> m >> q; set<pair<int, int> > s; for(int i=0; i<m; ++i){ int a, b; cin >> a >> b; -- a; -- b; s.insert(make_pair(a, b)); } vector<int> c(q), d(q); for(int i=0; i<q; ++i){ cin >> c[i] >> d[i]; -- c[i]; -- d[i]; s.erase(make_pair(c[i], d[i])); } UnionFindTree uft(n); for(const auto& p : s) uft.unite(p.first, p.second); vector<int> ans(n, 0); vector<int> v; uft.getGroup(0, v); for(unsigned i=0; i<v.size(); ++i) ans[v[i]] = -1; for(int i=q-1; i>=0; --i){ if(uft.same(c[i], d[i])) continue; vector<int> v; if(uft.same(0, c[i])) uft.getGroup(d[i], v); else if(uft.same(0, d[i])) uft.getGroup(c[i], v); for(unsigned j=0; j<v.size(); ++j) ans[v[j]] = i + 1; uft.unite(c[i], d[i]); } for(int i=1; i<n; ++i) cout << ans[i] << endl; return 0; }