結果

問題 No.977 アリス仕掛けの摩天楼
ユーザー CuriousFairy315CuriousFairy315
提出日時 2020-01-31 22:10:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,020 ms / 2,000 ms
コード長 1,440 bytes
コンパイル時間 2,361 ms
コンパイル使用メモリ 79,532 KB
実行使用メモリ 83,516 KB
最終ジャッジ日時 2024-09-17 08:27:00
合計ジャッジ時間 12,520 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
53,988 KB
testcase_01 AC 120 ms
53,964 KB
testcase_02 AC 109 ms
52,704 KB
testcase_03 AC 103 ms
52,712 KB
testcase_04 AC 127 ms
54,092 KB
testcase_05 AC 108 ms
52,296 KB
testcase_06 AC 112 ms
53,192 KB
testcase_07 AC 132 ms
54,192 KB
testcase_08 AC 132 ms
53,976 KB
testcase_09 AC 137 ms
54,420 KB
testcase_10 AC 137 ms
54,108 KB
testcase_11 AC 146 ms
54,048 KB
testcase_12 AC 135 ms
54,488 KB
testcase_13 AC 298 ms
57,900 KB
testcase_14 AC 316 ms
59,288 KB
testcase_15 AC 298 ms
57,972 KB
testcase_16 AC 313 ms
59,228 KB
testcase_17 AC 329 ms
59,456 KB
testcase_18 AC 523 ms
61,408 KB
testcase_19 AC 488 ms
61,704 KB
testcase_20 AC 629 ms
63,984 KB
testcase_21 AC 783 ms
74,148 KB
testcase_22 AC 919 ms
78,832 KB
testcase_23 AC 1,020 ms
83,480 KB
testcase_24 AC 953 ms
83,516 KB
testcase_25 AC 969 ms
82,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.ArrayList;
import java.util.ArrayDeque;

public class Main {
    public static void main(String[] args) {
        new Main();
    }
    
    public Main() {
        try (Scanner sc = new Scanner(System.in)) {
            int N = sc.nextInt();
            ArrayList<ArrayList<Integer>> graph = new ArrayList<>();
            for (int i = 0;i < N;++ i) graph.add(new ArrayList<>());
            int check = 0;
            for (int i = 1;i < N;++ i) {
                int u = sc.nextInt(), v = sc.nextInt();
                check = u;
                graph.get(u).add(v);
                graph.get(v).add(u);
            }
            ArrayDeque<Integer> bfs = new ArrayDeque<>();
            boolean[] reach = new boolean[N];
            bfs.addLast(check);
            reach[check] = true;
            int count = 1;
            while(!bfs.isEmpty()) {
                int tmp = bfs.removeFirst();
                for (int i : graph.get(tmp)) {
                    if (!reach[i]) {
                        reach[i] = true;
                        bfs.addLast(i);
                        ++ count;
                    }
                }
            }
            boolean cycleCheck = true;
            for (int i = 0;i < N;++ i) cycleCheck &= !reach[i] || graph.get(i).size() == 2;
            if (cycleCheck) ++ count;
            System.out.println(count < N ? "Alice" : "Bob");
        }
    }
}
0