結果

問題 No.977 アリス仕掛けの摩天楼
ユーザー 🍮かんプリン
提出日時 2020-02-01 21:18:21
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 997 bytes
コンパイル時間 2,578 ms
コンパイル使用メモリ 162,916 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-18 20:20:30
合計ジャッジ時間 3,134 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 24 WA * 2
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;
typedef long long ll;

// UnionFind
class UnionFind {
private:
    vector<int> par;
public:
    UnionFind(int n) {
        par.resize(n, -1);
    }

    int root(int x) {
        if (par[x] < 0) return x;
        return par[x] = root(par[x]);
    }

    bool unite(int x, int y) {
        int rx = root(x);
        int ry = root(y);
        if (rx == ry) return false;
        if (size(rx) < size(ry)) swap(rx, ry);
        par[rx] += par[ry];
        par[ry] = rx;
        return true;
    }

    bool same(int x, int y) {
        int rx = root(x);
        int ry = root(y);
        return rx == ry;
    }

    int size(int x) {
        return -par[root(x)];
    }
};

int main() {
    int n; cin >> n;
    UnionFind uf(n);
    bool ok = true;
    for (int i = 0; i < n - 1; i++) {
        int a, b; cin >> a >> b;
        if (!uf.unite(a, b)) {
            ok = false;
        }
    }
    if (ok) puts("Bob");
    else puts("Alice");
    return 0;
}
0