結果

問題 No.977 アリス仕掛けの摩天楼
ユーザー 37zigen37zigen
提出日時 2020-01-31 23:07:46
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,031 bytes
コンパイル時間 2,215 ms
コンパイル使用メモリ 77,844 KB
実行使用メモリ 64,436 KB
最終ジャッジ日時 2024-09-17 10:18:29
合計ジャッジ時間 12,711 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
54,196 KB
testcase_01 AC 134 ms
53,624 KB
testcase_02 AC 134 ms
54,020 KB
testcase_03 AC 134 ms
53,868 KB
testcase_04 AC 136 ms
54,152 KB
testcase_05 AC 134 ms
53,988 KB
testcase_06 AC 138 ms
54,008 KB
testcase_07 AC 149 ms
54,144 KB
testcase_08 AC 153 ms
54,112 KB
testcase_09 AC 154 ms
54,476 KB
testcase_10 WA -
testcase_11 AC 151 ms
56,428 KB
testcase_12 AC 155 ms
54,156 KB
testcase_13 AC 320 ms
58,636 KB
testcase_14 AC 334 ms
58,788 KB
testcase_15 AC 324 ms
58,952 KB
testcase_16 AC 360 ms
58,712 KB
testcase_17 AC 339 ms
58,836 KB
testcase_18 AC 549 ms
59,320 KB
testcase_19 WA -
testcase_20 AC 673 ms
59,300 KB
testcase_21 AC 718 ms
60,372 KB
testcase_22 AC 806 ms
63,512 KB
testcase_23 AC 835 ms
64,436 KB
testcase_24 AC 831 ms
64,372 KB
testcase_25 AC 842 ms
63,380 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(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