結果

問題 No.977 アリス仕掛けの摩天楼
ユーザー CuriousFairy315CuriousFairy315
提出日時 2020-01-31 22:06:48
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,418 bytes
コンパイル時間 3,029 ms
コンパイル使用メモリ 79,296 KB
実行使用メモリ 73,040 KB
最終ジャッジ日時 2024-09-17 08:23:43
合計ジャッジ時間 15,009 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,080 KB
testcase_01 AC 134 ms
41,072 KB
testcase_02 AC 133 ms
41,028 KB
testcase_03 AC 131 ms
41,008 KB
testcase_04 AC 118 ms
39,952 KB
testcase_05 AC 136 ms
41,268 KB
testcase_06 AC 132 ms
41,288 KB
testcase_07 AC 152 ms
41,236 KB
testcase_08 AC 150 ms
41,440 KB
testcase_09 AC 153 ms
41,812 KB
testcase_10 WA -
testcase_11 AC 152 ms
41,380 KB
testcase_12 AC 153 ms
41,392 KB
testcase_13 AC 347 ms
48,608 KB
testcase_14 AC 370 ms
48,264 KB
testcase_15 AC 358 ms
48,480 KB
testcase_16 AC 357 ms
48,576 KB
testcase_17 AC 369 ms
48,616 KB
testcase_18 AC 608 ms
51,516 KB
testcase_19 WA -
testcase_20 AC 721 ms
54,776 KB
testcase_21 AC 943 ms
62,920 KB
testcase_22 AC 1,102 ms
70,528 KB
testcase_23 AC 1,266 ms
73,040 KB
testcase_24 AC 1,205 ms
71,840 KB
testcase_25 AC 1,213 ms
72,388 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 (ArrayList<?> i : graph) cycleCheck &= i.size() == 2;
            if (cycleCheck) ++ count;
            System.out.println(count < N ? "Alice" : "Bob");
        }
    }
}
0