結果

問題 No.977 アリス仕掛けの摩天楼
ユーザー onsen_manjuuuonsen_manjuuu
提出日時 2020-08-02 04:02:14
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 61 ms / 2,000 ms
コード長 1,214 bytes
コンパイル時間 1,786 ms
コンパイル使用メモリ 174,324 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-09-23 04:04:01
合計ジャッジ時間 3,173 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,380 KB
testcase_01 AC 2 ms
4,380 KB
testcase_02 AC 2 ms
4,376 KB
testcase_03 AC 2 ms
4,380 KB
testcase_04 AC 1 ms
4,380 KB
testcase_05 AC 2 ms
4,380 KB
testcase_06 AC 1 ms
4,376 KB
testcase_07 AC 2 ms
4,376 KB
testcase_08 AC 2 ms
4,376 KB
testcase_09 AC 2 ms
4,380 KB
testcase_10 AC 2 ms
4,380 KB
testcase_11 AC 1 ms
4,376 KB
testcase_12 AC 2 ms
4,380 KB
testcase_13 AC 7 ms
4,376 KB
testcase_14 AC 7 ms
4,376 KB
testcase_15 AC 8 ms
4,380 KB
testcase_16 AC 6 ms
4,380 KB
testcase_17 AC 6 ms
4,376 KB
testcase_18 AC 18 ms
4,376 KB
testcase_19 AC 18 ms
4,376 KB
testcase_20 AC 29 ms
4,376 KB
testcase_21 AC 47 ms
4,380 KB
testcase_22 AC 57 ms
4,376 KB
testcase_23 AC 60 ms
4,376 KB
testcase_24 AC 60 ms
4,376 KB
testcase_25 AC 61 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>

using namespace std;
using ll = long long;

class UnionFind{
  private:
    vector<int> data;

  public:
    UnionFind(int n) : data(n,-1) {}
    int root(int i) { return data[i] < 0 ? i : data[i] = root(data[i]); }
    int size(int i) { return -data[root(i)]; }
    bool same(int x, int y) {return root(x) == root(y); }
    bool connected() {return size(0) == (int)data.size(); }

    bool unit(int i,int j){
        i = root(i);
        j = root(j);
        if(i != j){
            data[i] += data[j];
            data[j] = i;
        }
        return i != j;
    }
};

int main()
{
    int n;
    cin >> n;
    UnionFind tree(n);
    int res = 0;
    vector<int> num(n);
    for(int i = 0; i < n - 1; i++) {
        int u, v; cin >> u >> v;
        if(tree.same(u,v))res++;
        tree.unit(u,v);
        num[u]++;
        num[v]++;
    }
    set<int>st;
    for(int i = 0; i < n; i++)st.insert(tree.root(i));

    if(st.size() == 1) {
        cout << "Bob" << endl;
    }
    if(st.size() >= 3) {
        cout << "Alice" << endl;
    }
    if(st.size() == 2) {
        if(count(num.begin(), num.end(), 2) == n - 1) cout << "Bob" << endl;
        else cout << "Alice" << endl;
    }

}
0