結果
問題 | No.977 アリス仕掛けの摩天楼 |
ユーザー | a0171610 |
提出日時 | 2020-05-18 22:26:53 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,437 bytes |
コンパイル時間 | 1,867 ms |
コンパイル使用メモリ | 174,620 KB |
実行使用メモリ | 11,392 KB |
最終ジャッジ日時 | 2024-10-01 22:08:44 |
合計ジャッジ時間 | 3,760 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 2 ms
6,820 KB |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | AC | 2 ms
6,816 KB |
testcase_05 | AC | 2 ms
6,820 KB |
testcase_06 | AC | 3 ms
6,820 KB |
testcase_07 | AC | 2 ms
6,816 KB |
testcase_08 | AC | 2 ms
6,820 KB |
testcase_09 | AC | 2 ms
6,820 KB |
testcase_10 | AC | 2 ms
6,820 KB |
testcase_11 | AC | 2 ms
6,820 KB |
testcase_12 | AC | 2 ms
6,816 KB |
testcase_13 | WA | - |
testcase_14 | AC | 6 ms
6,816 KB |
testcase_15 | AC | 6 ms
6,816 KB |
testcase_16 | WA | - |
testcase_17 | AC | 6 ms
6,816 KB |
testcase_18 | WA | - |
testcase_19 | AC | 16 ms
6,820 KB |
testcase_20 | AC | 23 ms
7,296 KB |
testcase_21 | AC | 39 ms
9,216 KB |
testcase_22 | AC | 57 ms
10,752 KB |
testcase_23 | AC | 63 ms
11,264 KB |
testcase_24 | AC | 55 ms
11,392 KB |
testcase_25 | AC | 58 ms
11,380 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using lint = long long; struct UnionFind{ vector<lint> rnk,par,num; UnionFind(lint N) : rnk(N),par(N),num(N){ init(); } void init(){ for(lint i = 0;i < rnk.size();i++){ rnk[i] = 0; par[i] = i; num[i] = 1; } } lint find(lint x){ if(par[x] == x) return x; return par[x] = find(par[x]); } void unite(lint x,lint y){ x = find(x); y = find(y); if(x == y) return; if(rnk[x] < rnk[y]){ par[x] = y; num[y] += num[x]; } else{ par[y] = x; num[x] += num[y]; if(rnk[x] == rnk[y]) rnk[x]++; } } bool same(lint x,lint y){ return (find(x) == find(y)); } lint size(lint x){ return num[find(x)]; } }; signed main(){ int n; cin >> n; UnionFind tree(n); vector<vector<int> > G(n); for(int i = 1; i < n; i++){ int a, b; scanf("%d%d", &a, &b); tree.unite(a, b); G[a].push_back(b); G[b].push_back(a); } int c = 0; for(int i = 0; i < n; i++) if(tree.find(i) == i) c++; string ans; if(c == 1) ans = "Bob"; if(c > 2) ans = "Alice"; if(c == 2){ int a = -1, b = 1; for(int i = 0; i < n; i++){ if(tree.find(i) == i){ if(a < 0) a = tree.size(i); else b = tree.size(i); } } if(a < b) swap(a, b); if(a == n - 1 && b == 1){ bool ok = true; for(int i = 0; i < n; i++) if(G[i].size() != 2 && G[i].size() != 0) ok = false; if(ok) ans = "Bob"; else ans = "Alice"; } } cout << ans << endl; }