結果
問題 | No.977 アリス仕掛けの摩天楼 |
ユーザー | leaf_1415 |
提出日時 | 2020-01-31 21:36:24 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 56 ms / 2,000 ms |
コード長 | 1,294 bytes |
コンパイル時間 | 776 ms |
コンパイル使用メモリ | 71,652 KB |
実行使用メモリ | 9,600 KB |
最終ジャッジ日時 | 2024-09-17 07:20:55 |
合計ジャッジ時間 | 2,114 ms |
ジャッジサーバーID (参考情報) |
judge6 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 4 ms
5,888 KB |
testcase_01 | AC | 4 ms
6,016 KB |
testcase_02 | AC | 4 ms
6,016 KB |
testcase_03 | AC | 4 ms
6,016 KB |
testcase_04 | AC | 4 ms
6,016 KB |
testcase_05 | AC | 4 ms
6,016 KB |
testcase_06 | AC | 4 ms
6,016 KB |
testcase_07 | AC | 4 ms
6,016 KB |
testcase_08 | AC | 4 ms
6,016 KB |
testcase_09 | AC | 4 ms
6,016 KB |
testcase_10 | AC | 4 ms
6,016 KB |
testcase_11 | AC | 4 ms
6,016 KB |
testcase_12 | AC | 4 ms
6,016 KB |
testcase_13 | AC | 8 ms
6,400 KB |
testcase_14 | AC | 8 ms
6,400 KB |
testcase_15 | AC | 8 ms
6,272 KB |
testcase_16 | AC | 8 ms
6,272 KB |
testcase_17 | AC | 7 ms
6,144 KB |
testcase_18 | AC | 15 ms
6,912 KB |
testcase_19 | AC | 15 ms
6,912 KB |
testcase_20 | AC | 25 ms
7,296 KB |
testcase_21 | AC | 41 ms
8,188 KB |
testcase_22 | AC | 53 ms
8,960 KB |
testcase_23 | AC | 56 ms
9,600 KB |
testcase_24 | AC | 49 ms
9,600 KB |
testcase_25 | AC | 56 ms
9,472 KB |
ソースコード
#include <iostream> #include <vector> #include <set> #define llint long long using namespace std; struct UnionFind{ int size; vector<int> parent; UnionFind(){} UnionFind(int size){ this->size = size; parent.resize(size+1); init(); } void init(){ for(int i = 0; i <= size; i++) parent[i] = i; } int root(int i){ if(parent[i] == i) return i; return parent[i] = root(parent[i]); } bool same(int i, int j){ return root(i) == root(j); } void unite(int i, int j){ int root_i = root(i), root_j = root(j); if(root_i == root_j) return; parent[root_i] = root_j; } }; llint n; vector<llint> G[100005]; UnionFind uf(100005); set<llint> S; int main(void) { ios::sync_with_stdio(0); cin.tie(0); cin >> n; llint u, v; for(int i = 1; i <= n-1; i++){ cin >> u >> v; u++, v++; G[u].push_back(v); G[v].push_back(u); uf.unite(u, v); } for(int i = 1; i <= n; i++) S.insert(uf.root(i)); if(S.size() >= 3){ cout << "Alice" << endl; return 0; } if(S.size() == 1){ cout << "Bob" << endl; return 0; } bool flag0 = false, flag2 = true; for(int i = 1; i <= n; i++){ if(G[i].size() != 2){ if(G[i].size() == 0) flag0 = true; else flag2 = false; } } if(flag0 && flag2) cout << "Bob" << endl; else cout << "Alice" << endl; return 0; }