結果
問題 | No.977 アリス仕掛けの摩天楼 |
ユーザー | 37zigen |
提出日時 | 2020-01-31 23:03:44 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,110 bytes |
コンパイル時間 | 2,260 ms |
コンパイル使用メモリ | 79,492 KB |
実行使用メモリ | 54,820 KB |
最終ジャッジ日時 | 2024-09-17 10:09:46 |
合計ジャッジ時間 | 9,044 ms |
ジャッジサーバーID (参考情報) |
judge6 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | OLE | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
ソースコード
import java.util.Arrays; import java.util.Scanner; import java.io.*; class Main { public static void main(String[] args) { new Main().run(); } class DJSet{ int n; int[] upper; public DJSet(int n){ this.n=n; upper=new int[n]; Arrays.fill(upper,-1); } boolean equiv(int a,int b){ return root(a)==root(b); } int root(int x){ return upper[x]<0?x:(upper[x]=root(upper[x])); } void setUnion(int a,int b){ a=root(a); b=root(b); if(upper[a]>0||upper[b]>0)throw new AssertionError(); if(a==b)return; if(upper[a]<upper[b]){setUnion(b,a);return;} upper[b]+=upper[a]; upper[a]=b; } } void run() { Scanner sc = new Scanner(System.in); PrintWriter pw=new PrintWriter(System.out); int N=sc.nextInt(); DJSet ds=new DJSet(N); for(int i=0;i<N-1;++i){ int u=sc.nextInt(); int v=sc.nextInt(); ds.setUnion(u,v); tr(u,v,ds.upper); } int ans=0; for(int i=0;i<N;++i){ if(ds.upper[i]<0)++ans; } pw.println(ans==1?"Bob":"Alice"); pw.close(); } void tr(Object...o){System.out.println(Arrays.deepToString(o));} }