結果
問題 | No.416 旅行会社 |
ユーザー | peroon |
提出日時 | 2019-04-18 11:37:25 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 447 ms / 4,000 ms |
コード長 | 3,513 bytes |
コンパイル時間 | 2,092 ms |
コンパイル使用メモリ | 185,784 KB |
実行使用メモリ | 33,792 KB |
最終ジャッジ日時 | 2024-05-08 15:44:01 |
合計ジャッジ時間 | 7,753 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 216 ms
19,712 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 3 ms
5,376 KB |
testcase_08 | AC | 6 ms
5,376 KB |
testcase_09 | AC | 24 ms
5,376 KB |
testcase_10 | AC | 244 ms
19,584 KB |
testcase_11 | AC | 250 ms
24,320 KB |
testcase_12 | AC | 256 ms
24,320 KB |
testcase_13 | AC | 221 ms
24,320 KB |
testcase_14 | AC | 436 ms
32,128 KB |
testcase_15 | AC | 447 ms
33,024 KB |
testcase_16 | AC | 431 ms
33,792 KB |
testcase_17 | AC | 437 ms
32,768 KB |
testcase_18 | AC | 444 ms
32,512 KB |
testcase_19 | AC | 301 ms
22,016 KB |
testcase_20 | AC | 317 ms
21,504 KB |
コンパイルメッセージ
main.cpp: In member function 'std::vector<long long int> UnionFind::GetList(ll)': main.cpp:80:5: warning: no return statement in function returning non-void [-Wreturn-type] 80 | } | ^
ソースコード
#include<bits/stdc++.h> using namespace std; using ll = long long; #define FOR(i,a,b) for(ll i=(a);i<(b);++i) #define ALL(v) (v).begin(), (v).end() #define p(s) cout<<(s)<<endl #define p2(s, t) cout << (s) << " " << (t) << endl #define br() p("") #define pn(s) cout << (#s) << " " << (s) << endl #define p_yes() p("Yes") #define p_no() p("No") const ll mod = 1e9 + 7; const ll inf = 1e18; #define LOCAL #ifdef LOCAL #define show(x) cerr << __LINE__ << " : " << #x << " = " << (x) << endl #else #define show(x) true #endif template < typename T > void vprint(T &V){ for(auto v : V){ cout << v << " "; } cout << endl; } struct UnionFind{ vector<ll> parent; UnionFind(ll sz){ parent.resize(sz); reset(); } void reset(){ FOR(i, 0, parent.size()){ parent[i] = i; } } void unite(ll a, ll b){ if(a>b){ swap(a, b); } ll rootA = findRoot(a); ll rootB = findRoot(b); if(rootA>rootB){ swap(rootA, rootB); } if(rootA==rootB){ return; }else{ // 小さい方を親にする parent[rootB] = rootA; } } ll findRoot(ll a){ if(parent[a]==a){ return a; }else{ return parent[a] = findRoot(parent[a]); } } void print(){ cout << "---" << endl; for(ll p : parent){ cout << p << endl; } cout << "---" << endl; } vector<ll> GetList(ll i){ } }; vector<vector<ll> > G; vector<ll> ans; // 塗る void dfs(ll i, ll v){ // cout << "dfs " << i << " " << v << endl; ans[i] = v; for(ll to : G[i]){ if(ans[to]==0) dfs(to, v); } } int main(){ cin.tie(0); ios::sync_with_stdio(false); // input ll N, M, Q; cin >> N >> M >> Q; G.resize(N); ans.resize(N); vector<ll> A(M); vector<ll> B(M); FOR(i, 0, M){ ll a, b; cin >> a >> b; a--; b--; A[i] = a; B[i] = b; } // 壊される辺 vector<ll> C(Q); vector<ll> D(Q); map<pair<ll, ll>, ll> mp_break; FOR(i, 0, Q){ ll c, d; cin >> c >> d; c--; d--; C[i] = c; D[i] = d; mp_break[make_pair(c, d)] = 1; } auto uf = UnionFind(N); // 辺をはる FOR(i, 0, M){ ll a = A[i]; ll b = B[i]; auto p = make_pair(a, b); if(mp_break.count(p)>0){ // 辺をはらない }else{ uf.unite(a, b); G[a].push_back(b); G[b].push_back(a); } } // 壊した後もつながっている点 FOR(i, 0, N){ if(uf.findRoot(i)==0){ ans[i] = -1; } } // vprint(ans); // 破壊を逆順に // uf.print(); for(int i=Q-1; i>=0; i--){ // pn(i); ll c = C[i]; ll d = D[i]; ll rootC = uf.findRoot(c); ll rootD = uf.findRoot(d); // cout << "connect " << c << " " << d << " , " << rootC << " " << rootD << endl; if(rootC==0 && rootD!=0){ // 今回でつながる dfs(rootD, i+1); } if(rootD==0 && rootC!=0){ dfs(rootC, i+1); } uf.unite(c, d); G[c].push_back(d); G[d].push_back(c); } FOR(i, 1, N){ p(ans[i]); } // vprint(ans); return 0; }