結果

問題 No.977 アリス仕掛けの摩天楼
ユーザー 37zigen37zigen
提出日時 2020-01-31 23:20:45
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,259 bytes
コンパイル時間 2,039 ms
コンパイル使用メモリ 78,308 KB
実行使用メモリ 64,744 KB
最終ジャッジ日時 2024-09-17 10:41:14
合計ジャッジ時間 11,037 ms
ジャッジサーバーID
(参考情報)
judge3 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
54,100 KB
testcase_01 AC 131 ms
53,944 KB
testcase_02 AC 134 ms
54,124 KB
testcase_03 AC 119 ms
53,824 KB
testcase_04 AC 120 ms
53,788 KB
testcase_05 AC 119 ms
54,496 KB
testcase_06 AC 117 ms
54,124 KB
testcase_07 AC 126 ms
54,136 KB
testcase_08 AC 135 ms
54,400 KB
testcase_09 AC 130 ms
54,172 KB
testcase_10 WA -
testcase_11 AC 133 ms
53,860 KB
testcase_12 AC 144 ms
54,276 KB
testcase_13 AC 280 ms
58,924 KB
testcase_14 AC 295 ms
59,172 KB
testcase_15 AC 304 ms
59,224 KB
testcase_16 AC 293 ms
58,968 KB
testcase_17 AC 301 ms
58,916 KB
testcase_18 AC 466 ms
59,544 KB
testcase_19 WA -
testcase_20 AC 538 ms
59,380 KB
testcase_21 AC 653 ms
60,612 KB
testcase_22 AC 685 ms
63,612 KB
testcase_23 AC 694 ms
64,744 KB
testcase_24 AC 690 ms
64,460 KB
testcase_25 AC 688 ms
64,616 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;
		}
		
		int sz(int a){
			return -upper[root(a)];
		}
	}
	
	void run() {
		Scanner sc = new Scanner(System.in);
		PrintWriter pw=new PrintWriter(System.out);
		int N=sc.nextInt();
		DJSet ds=new DJSet(N);
		int[] deg=new int[N];
		for(int i=0;i<N-1;++i){
			int u=sc.nextInt();
			int v=sc.nextInt();
			deg[u]++;
			deg[v]++;
			ds.setUnion(u,v);
		}
		int sz=0;
		for(int i=0;i<N;++i){
			if(ds.upper[i]<0)++sz;
		}
		boolean Bob=sz==1;
		if(sz==2){
			Bob=true;
			for(int i=0;i<N;++i){
				Bob&=(ds.sz(i)==2&&deg[i]==2)||ds.sz(i)==1;
			}
		}
		
		pw.println(Bob?"Bob":"Alice");
		pw.close();
	}
	
	void tr(Object...o){System.out.println(Arrays.deepToString(o));}
}



0