結果

問題 No.977 アリス仕掛けの摩天楼
ユーザー 37zigen37zigen
提出日時 2020-01-31 23:05:14
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,089 bytes
コンパイル時間 2,133 ms
コンパイル使用メモリ 77,700 KB
実行使用メモリ 59,384 KB
最終ジャッジ日時 2024-09-17 10:12:03
合計ジャッジ時間 10,636 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
41,516 KB
testcase_01 AC 118 ms
41,488 KB
testcase_02 AC 115 ms
41,332 KB
testcase_03 AC 108 ms
41,512 KB
testcase_04 AC 121 ms
41,312 KB
testcase_05 AC 106 ms
41,796 KB
testcase_06 AC 112 ms
41,652 KB
testcase_07 AC 135 ms
41,876 KB
testcase_08 AC 148 ms
41,568 KB
testcase_09 AC 138 ms
41,896 KB
testcase_10 WA -
testcase_11 AC 135 ms
41,400 KB
testcase_12 AC 131 ms
42,076 KB
testcase_13 AC 304 ms
47,500 KB
testcase_14 AC 310 ms
47,660 KB
testcase_15 AC 271 ms
47,908 KB
testcase_16 AC 271 ms
48,144 KB
testcase_17 AC 300 ms
47,624 KB
testcase_18 AC 454 ms
48,164 KB
testcase_19 WA -
testcase_20 AC 448 ms
48,540 KB
testcase_21 AC 589 ms
50,680 KB
testcase_22 AC 668 ms
52,520 KB
testcase_23 AC 599 ms
52,672 KB
testcase_24 AC 653 ms
52,336 KB
testcase_25 AC 661 ms
52,804 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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);
		}
		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));}
}



0