結果

問題 No.2202 贅沢てりたまチキン
ユーザー umimelumimel
提出日時 2023-02-03 21:31:24
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 67 ms / 2,000 ms
コード長 1,458 bytes
コンパイル時間 1,812 ms
コンパイル使用メモリ 170,496 KB
実行使用メモリ 9,512 KB
最終ジャッジ日時 2024-07-02 19:14:53
合計ジャッジ時間 3,574 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 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 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 8 ms
9,344 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 42 ms
9,472 KB
testcase_15 AC 41 ms
9,472 KB
testcase_16 AC 35 ms
9,472 KB
testcase_17 AC 35 ms
9,472 KB
testcase_18 AC 18 ms
6,400 KB
testcase_19 AC 24 ms
9,512 KB
testcase_20 AC 44 ms
9,472 KB
testcase_21 AC 43 ms
9,436 KB
testcase_22 AC 29 ms
5,376 KB
testcase_23 AC 33 ms
5,376 KB
testcase_24 AC 32 ms
5,376 KB
testcase_25 AC 67 ms
9,472 KB
testcase_26 AC 42 ms
9,472 KB
testcase_27 AC 41 ms
9,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using pll = pair<ll, ll>;
#define drep(i, cc, n) for (ll i = (cc); i <= (n); ++i)
#define rep(i, n) drep(i, 0, n - 1)
#define all(a) (a).begin(), (a).end()
#define pb push_back
#define fi first
#define se second

const ll MOD = 1000000007;
const ll MOD2 = 998244353;
const ll INF = 1LL << 60;
const ll MAX_N = 2e5;

struct UnionFind{
    vector<ll> parent;
    vector<ll> sizes;
    
    UnionFind(ll N) : parent(N), sizes(N, 1){
        rep(i, N) parent[i] = i;
    }
    
    ll root(ll x){
        if (parent[x] == x) return x;
        return parent[x] = root(parent[x]);
    }
 
    void unite(ll x, ll y){
        ll rx = root(x);
        ll ry = root(y);
        if (rx == ry) return;
        if (sizes[rx] < sizes[ry]) swap(rx, ry);
        sizes[rx] += sizes[ry];
        parent[ry] = rx;
    }
 
    bool same(ll x, ll y){
        ll rx = root(x);
        ll ry = root(y);
        return rx == ry;
    }
 
    ll size(ll x){
        return sizes[root(x)];
    }
};

int main(){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    
    ll n, m;
    cin >> n >> m;

    UnionFind UF(2*n);
    rep(i, m){
        ll a, b;
        cin >> a >> b;
        a--; b--;
        UF.unite(a, n+b);
        UF.unite(n+a, b);
    }

    bool flag = true;
    rep(i, n){
        if(!UF.same(i, n+i)) flag = false;
    }

    if(flag) cout << "Yes" << endl;
    else cout << "No" << endl;
}
0