結果
問題 | No.416 旅行会社 |
ユーザー | srup٩(๑`н´๑)۶ |
提出日時 | 2016-08-27 20:50:10 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,468 bytes |
コンパイル時間 | 839 ms |
コンパイル使用メモリ | 77,920 KB |
実行使用メモリ | 24,192 KB |
最終ジャッジ日時 | 2024-11-08 19:59:31 |
合計ジャッジ時間 | 11,889 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
ソースコード
#include <iostream> #include <algorithm> #include <vector> #include <set> using namespace std; typedef long long ll; #define rep(i,n) for(int i=0;i<(n);i++) ///Quick Find Weighted/// const int MAX_N = 200010; int group[MAX_N];//group[i] := 頂点iが所属するグループ vector<int> item[MAX_N];//item[g]:= グループgに所属する頂点番号 // アイテムiaの所属するグループとアイテムibの所属するグループを1つにする(異なるグループに属するものに) void merge(int ia, int ib){ //iaの所属するグループがibの所属するグループより小さくならないようにする(一般的マージテク) if(item[group[ia]].size() < item[group[ib]].size()){ swap(ia, ib); } int ga = group[ia], gb = group[ib];//グループgbの方が要素数が少ない for(auto u : item[gb]){//uには頂点の番号はいる group[u] = ga;//グループの番号を更新 } item[ga].insert(item[ga].end(), item[gb].begin(), item[gb].end());//つなげる item[gb].clear(); } // アイテムiaとアイテムibは同じグループに所属しているか? bool is_same_group(int ia, int ib){ return group[ia] == group[ib]; } void init(int n){ for (int i = 0; i < n; ++i){ group[i] = i; item[i].push_back(i); } } ///////////////////////// int main(void){ int n, m, q; cin >> n >> m >> q; vector<pair<int, int> > cd; 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)); } for (int i = 0; i < q; ++i){ int c, d; cin >> c >> d; c--; d--; cd.push_back(make_pair(c, d)); s.erase(make_pair(c, d)); } init(n);//初期化 for(auto u : s){//最後まで残っている橋をつなげる merge(u.first, u.second); } vector<int> ans(n, 0);//初めから到達できないのは0 for (int i = 1; i < n; ++i){ if(is_same_group(0, i)){ ans[i] = -1;//橋がすべて壊れても到達できるのは-1 } } for (int i = q - 1; i >= 0 ; --i){ int a = cd[i].first, b = cd[i].second; if(!is_same_group(a, b)){ merge(a, b); for(auto u : item[group[a]]){ if(is_same_group(0, u) && ans[u] == 0){ ans[u] = i + 1; } } for(auto u : item[group[b]]){ if(is_same_group(0, u) && ans[u] == 0){ ans[u] = i + 1; } } } } for (int i = 1; i < n; ++i){ printf("%d\n", ans[i]); } return 0; }