結果
問題 | No.416 旅行会社 |
ユーザー | mai |
提出日時 | 2016-09-04 04:06:04 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 4,210 bytes |
コンパイル時間 | 2,291 ms |
コンパイル使用メモリ | 193,360 KB |
実行使用メモリ | 11,264 KB |
最終ジャッジ日時 | 2024-11-15 20:07:31 |
合計ジャッジ時間 | 6,426 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
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 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
コンパイルメッセージ
main.cpp: In function 'int main()': main.cpp:112:17: warning: 'j' may be used uninitialized [-Wmaybe-uninitialized] 112 | alive[j]=-1; | ~~~~~~~~^~~ main.cpp:88:11: note: 'j' was declared here 88 | int i,j,k,l; | ^
ソースコード
#include<bits/stdc++.h> using namespace std; typedef unsigned int uint; typedef long long int ll; typedef unsigned long long int ull; #define debugv(v) printf("L%d %s => ",__LINE__,#v);for(auto e:v){cout<<e<<" ";}cout<<endl; #define debugm(m) printf("L%d %s is..\n",__LINE__,#m);for(auto v:m){for(auto e:v){cout<<e<<" ";}cout<<endl;} #define debuga(m,w) printf("L%d %s is => ",__LINE__,#m);for(int x=0;x<(w);x++){cout<<(m)[x]<<" ";}cout<<endl; #define debugaa(m,w,h) printf("L%d %s is..\n",__LINE__,#m);for(int y=0;y<(h);y++){for(int x=0;x<(w);x++){cout<<(m)[x][y]<<" ";}cout<<endl;} #define ALL(v) (v).begin(),(v).end() #define BIGINT 0x7FFFFFFF #define E107 1000000007 #define TIME chrono::system_clock::now #define MILLISEC(t) (chrono::duration_cast<chrono::milliseconds>(t).count()) template<typename T1,typename T2> ostream& operator <<(ostream &o,const pair<T1,T2> p){o<<"("<<p.first<<":"<<p.second<<")";return o;} struct UnionFind { vector<int> data; UnionFind(int size) : data(size, -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)]; } }; struct QuickFind{ vector<int> toGroup; vector<deque<int>> toItems; QuickFind(int size){ toGroup.resize(size); toItems.resize(size); for (int i=0;i<size;i++){ toGroup[i] = i; toItems[i].emplace_back(i); } } bool unionSet(int x,int y){ bool r = toGroup[x] != toGroup[y]; if (r){ if (toItems[toGroup[x]].size() <= toItems[toGroup[y]].size()){ for (auto e:toItems[toGroup[x]]){ toGroup[e]=toGroup[y]; } toItems[toGroup[y]].insert(toItems[toGroup[y]].end(),ALL(toItems[x])); }else{ for (auto e:toItems[toGroup[y]]){ toGroup[e]=toGroup[x]; } toItems[toGroup[x]].insert(toItems[toGroup[x]].end(),ALL(toItems[y])); } } return r; } bool findSet(int x,int y){ return toGroup[x] == toGroup[y]; } }; int m,n,q; unordered_map<int,vector<int>> bridgeindex; // map[island]=bridgeid... pair<int,int> bridge[20005]; pair<int,int> destroy[20005]; int alive[20005]; int order[20005]; int main(){ int i,j,k,l; int a,b,c,d; cin>>n>>m>>q; // load for (i=0;i<m;i++){ scanf("%d%d",&a,&b); bridge[i].first = a; // a < b bridge[i].second = b; bridgeindex[a].push_back(i); } // 残る橋を求める for (i=0;i<q;i++){ scanf("%d%d",&a,&b); destroy[i].first = a; destroy[i].second = b; for (auto k: bridgeindex[a]){ // memo:c++1z化 if (bridge[k].second==b){ j=k; break; // 必ず存在することが保証される } } alive[j]=-1; } // UnionFind uf(n+1); QuickFind qf(n+1); // 残る橋からunionfindを構築 for (i=0;i<m;i++){ if (alive[i]==-1) continue; a = bridge[i].first; b = bridge[i].second; qf.unionSet(a,b); } for (auto e:qf.toItems[qf.toGroup[1]]){ order[e] = -1; } // 最後に消した橋を追加する、その次の… for (i=q-1;0<=i;i--){ a = destroy[i].first; b = destroy[i].second; if (qf.findSet(1,a)^qf.findSet(1,b)){ if (qf.findSet(1,a)){ for (auto e:qf.toItems[qf.toGroup[b]]){ order[e] = i + 1; } }else{ for (auto e:qf.toItems[qf.toGroup[a]]){ order[e] = i + 1; } } } qf.unionSet(a,b); } for (i=2;i<=n;i++){ printf("%d\n",order[i]); } return 0; }