結果
問題 | No.977 アリス仕掛けの摩天楼 |
ユーザー | takakin |
提出日時 | 2020-05-15 14:15:42 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 307 ms / 2,000 ms |
コード長 | 654 bytes |
コンパイル時間 | 228 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 13,568 KB |
最終ジャッジ日時 | 2024-09-18 23:37:31 |
合計ジャッジ時間 | 3,865 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 32 ms
10,496 KB |
testcase_01 | AC | 32 ms
10,624 KB |
testcase_02 | AC | 31 ms
10,624 KB |
testcase_03 | AC | 31 ms
10,752 KB |
testcase_04 | AC | 31 ms
10,624 KB |
testcase_05 | AC | 32 ms
10,624 KB |
testcase_06 | AC | 32 ms
10,624 KB |
testcase_07 | AC | 31 ms
10,496 KB |
testcase_08 | AC | 31 ms
10,624 KB |
testcase_09 | AC | 32 ms
10,624 KB |
testcase_10 | AC | 31 ms
10,624 KB |
testcase_11 | AC | 31 ms
10,624 KB |
testcase_12 | AC | 32 ms
10,624 KB |
testcase_13 | AC | 56 ms
10,880 KB |
testcase_14 | AC | 56 ms
10,752 KB |
testcase_15 | AC | 56 ms
10,752 KB |
testcase_16 | AC | 56 ms
11,008 KB |
testcase_17 | AC | 58 ms
11,136 KB |
testcase_18 | AC | 107 ms
11,392 KB |
testcase_19 | AC | 109 ms
11,392 KB |
testcase_20 | AC | 159 ms
12,160 KB |
testcase_21 | AC | 236 ms
12,928 KB |
testcase_22 | AC | 307 ms
13,568 KB |
testcase_23 | AC | 305 ms
13,056 KB |
testcase_24 | AC | 295 ms
13,312 KB |
testcase_25 | AC | 307 ms
13,184 KB |
ソースコード
import sys input=lambda: sys.stdin.readline().rstrip() n=int(input()) par=[-1]*n def find(x): if par[x]<0: return x else: par[x]=find(par[x]) return par[x] def unite(x,y): x=find(x) y=find(y) if x==y: return False else: if par[x]>par[y]: x,y=y,x par[x]+=par[y] par[y]=x return True def same(x,y): return find(x)==find(y) def size(x): return -par[find(x)] C=[0]*n for _ in range(n-1): u,v=map(int,input().split()) unite(u,v) C[u]+=1 C[v]+=1 for i in range(n): find(i) if -min(par)==n: print("Bob") elif -min(par)==n-1 and max(C)==2 and min(C)==0: print("Bob") else: print("Alice")