結果
問題 | No.1805 Approaching Many Typhoon |
ユーザー | rieaaddlreiuu |
提出日時 | 2024-05-26 12:10:04 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,766 bytes |
コンパイル時間 | 1,881 ms |
コンパイル使用メモリ | 171,480 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-05-26 12:10:08 |
合計ジャッジ時間 | 3,511 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | RE | - |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | WA | - |
testcase_08 | RE | - |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | AC | 2 ms
6,940 KB |
testcase_11 | AC | 2 ms
6,944 KB |
testcase_12 | AC | 2 ms
6,940 KB |
testcase_13 | WA | - |
testcase_14 | AC | 1 ms
6,940 KB |
testcase_15 | AC | 1 ms
6,940 KB |
testcase_16 | WA | - |
testcase_17 | AC | 2 ms
6,944 KB |
testcase_18 | AC | 2 ms
6,940 KB |
testcase_19 | AC | 2 ms
6,944 KB |
testcase_20 | AC | 2 ms
6,944 KB |
testcase_21 | AC | 1 ms
6,944 KB |
testcase_22 | RE | - |
testcase_23 | AC | 2 ms
6,940 KB |
testcase_24 | AC | 2 ms
6,940 KB |
testcase_25 | RE | - |
testcase_26 | AC | 2 ms
6,940 KB |
testcase_27 | AC | 2 ms
6,944 KB |
testcase_28 | AC | 3 ms
6,940 KB |
testcase_29 | AC | 3 ms
6,944 KB |
testcase_30 | AC | 2 ms
6,940 KB |
testcase_31 | AC | 3 ms
6,940 KB |
testcase_32 | AC | 2 ms
6,940 KB |
testcase_33 | AC | 2 ms
6,944 KB |
testcase_34 | AC | 2 ms
6,940 KB |
testcase_35 | AC | 2 ms
6,944 KB |
testcase_36 | AC | 2 ms
6,940 KB |
testcase_37 | WA | - |
testcase_38 | AC | 2 ms
6,944 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; struct UnionFind { vector<int> par, rank, siz; UnionFind(int n) : par(n,-1), rank(n,0), siz(n,1) { } int root(int x) { if (par[x]==-1) return x; // x が根の場合は x を返す else return par[x] = root(par[x]); // 経路圧縮 } bool issame(int x, int y) { return root(x)==root(y); } bool unite(int x, int y) { int rx = root(x), ry = root(y); // x 側と y 側の根を取得する if (rx==ry) return false; // すでに同じグループのときは何もしない // union by rank if (rank[rx]<rank[ry]) swap(rx, ry); // ry 側の rank が小さくなるようにする par[ry] = rx; // ry を rx の子とする if (rank[rx]==rank[ry]) rank[rx]++; // rx 側の rank を調整する siz[rx] += siz[ry]; // rx 側の siz を調整する return true; } int size(int x) { return siz[root(x)]; } }; int main(){ int N,M,S,G,f,t; cin >> N >> M >> S >> G; vector<int> edge_f(M),edge_t(M); for(int i=0;i<M;i++){ cin >> f >> t; edge_f[i] = f-1; edge_t[i] = t-1; } int U,iii; cin >> U; vector<int> I(U); for(int i=0;i<U;i++){ cin >> iii; I[i] = iii-1; } UnionFind u(N); int flg = 0; for(int i=0;i<M;i++){ for(int j=0;j<U;j++){ if(edge_f[i] == I[j]){ flg = 1; } if(edge_t[i] == I[j]){ flg = 1; } } if(flg == 0){ u.unite(edge_f[i],edge_t[i]); } flg = 0; } if(u.issame(S,G)){ cout << "Yes" << endl; } else { cout << "No" << endl; } }