結果

問題 No.1805 Approaching Many Typhoon
ユーザー rieaaddlreiuurieaaddlreiuu
提出日時 2024-05-26 12:10:22
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 1,770 bytes
コンパイル時間 1,814 ms
コンパイル使用メモリ 172,172 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-26 12:10:25
合計ジャッジ時間 2,843 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 1 ms
6,944 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 1 ms
6,944 KB
testcase_12 AC 1 ms
6,940 KB
testcase_13 AC 1 ms
6,944 KB
testcase_14 AC 1 ms
6,940 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 1 ms
6,940 KB
testcase_17 AC 1 ms
6,944 KB
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 2 ms
6,940 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 1 ms
6,940 KB
testcase_22 AC 1 ms
6,940 KB
testcase_23 AC 1 ms
6,944 KB
testcase_24 AC 2 ms
6,940 KB
testcase_25 AC 2 ms
6,944 KB
testcase_26 AC 1 ms
6,940 KB
testcase_27 AC 1 ms
6,940 KB
testcase_28 AC 2 ms
6,944 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 1 ms
6,940 KB
testcase_35 AC 2 ms
6,940 KB
testcase_36 AC 2 ms
6,944 KB
testcase_37 AC 1 ms
6,940 KB
testcase_38 AC 2 ms
6,948 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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-1,G-1)){
        cout << "Yes" << endl;
    } else {
        cout << "No" << endl;
    }
}
0