結果

問題 No.2202 贅沢てりたまチキン
ユーザー rieaaddlreiuurieaaddlreiuu
提出日時 2024-05-25 22:39:48
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 158 ms / 2,000 ms
コード長 1,536 bytes
コンパイル時間 2,003 ms
コンパイル使用メモリ 170,408 KB
実行使用メモリ 8,064 KB
最終ジャッジ日時 2024-12-20 19:58:26
合計ジャッジ時間 6,088 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 2 ms
6,820 KB
testcase_09 AC 2 ms
6,824 KB
testcase_10 AC 6 ms
7,936 KB
testcase_11 AC 2 ms
6,816 KB
testcase_12 AC 2 ms
6,820 KB
testcase_13 AC 2 ms
6,820 KB
testcase_14 AC 131 ms
7,936 KB
testcase_15 AC 130 ms
7,936 KB
testcase_16 AC 104 ms
7,936 KB
testcase_17 AC 106 ms
7,936 KB
testcase_18 AC 51 ms
6,820 KB
testcase_19 AC 68 ms
7,936 KB
testcase_20 AC 131 ms
8,064 KB
testcase_21 AC 131 ms
7,936 KB
testcase_22 AC 88 ms
6,816 KB
testcase_23 AC 106 ms
6,816 KB
testcase_24 AC 97 ms
6,820 KB
testcase_25 AC 158 ms
7,936 KB
testcase_26 AC 130 ms
7,936 KB
testcase_27 AC 129 ms
7,936 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]); // 経路圧縮
    }

    // x と y が同じグループに属するか (= 根が一致するか)
    bool issame(int x, int y) {
        return root(x)==root(y);
    }

    // x を含むグループと 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;
    }

    // x を含む根付き木のサイズを求める
    int size(int x) {
        return siz[root(x)];
    }
};

int main(){
	int N,M,a,b;
	cin >> N >> M;
	UnionFind u(2*N);//0 to N-1 地下
	for(int i=0;i<M;i++){
		cin >> a >> b;
		u.unite(a-1,b-1+N);
		u.unite(a-1+N,b-1);
	}
	for(int i=0;i<N;i++){
		if(!u.issame(i,i+N)){
			cout << "No" << endl;
			return 0;
		}
	}
	cout << "Yes" << endl;
	
}
0