結果

問題 No.977 アリス仕掛けの摩天楼
ユーザー mikanmikan
提出日時 2020-03-05 19:37:24
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 60 ms / 2,000 ms
コード長 1,518 bytes
コンパイル時間 674 ms
コンパイル使用メモリ 73,440 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-04-27 03:05:59
合計ジャッジ時間 1,739 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <vector>
using namespace std;

class UnionFind {

    vector<uint64_t> parent;

public:

    vector<uint64_t> digree;

    UnionFind(uint64_t N) : parent(N), digree(N) {
        for(uint64_t i=0; i<N; i++){
            parent[i] = i;
            digree[i] = 0;
        }
    }

    void unite(uint64_t x, uint64_t y){
        uint64_t rx = root(x);
        uint64_t ry = root(y);
	digree[x] += 1;
	digree[y] += 1;
        if(rx == ry) {
	} else {
		parent[rx] = ry;
	}
    }

    bool isSame(uint64_t x, uint64_t y){
        uint64_t rx = root(x);
        uint64_t ry = root(y);
        return rx == ry;
    }

    int root(uint64_t x){
        if (parent[x] == x) return x;
        return parent[x] = root(parent[x]);
    }
};


int main()
{
	int N;
	cin >> N;

	UnionFind uf(N);

	for(int n=0; n<N-1; n++){
		int u, v;
		cin >> u >> v;
		uf.unite(u, v);
	}

	int root1=-1, root2=-1;
	for(int n=0; n<N; n++){
		if(root1==-1){
			root1 = uf.root(n);
		} else if(uf.root(n) == root1){
		} else if(root2 == -1){
			root2 = uf.root(n);
		} else if(uf.root(n) == root2){
		} else {
			cout << "Alice" << endl;
			return 0;
		}
	}
	if(root2 == -1){
		cout << "Bob" << endl;
		return 0;
	} else {
		if(uf.digree[root2] == 0){
			root2 = root1;
		} else if(uf.digree[root1] != 0){
			cout << "Alice" << endl;
			return 0;
		}
		for(int n=0; n<N; n++){
			if(uf.root(n) == root2 && uf.digree[n] != 2){
				cout << "Alice" << endl;
				return 0;
			} 
		}
		cout << "Bob" << endl;
		return 0;
	}
}
0