結果

問題 No.977 アリス仕掛けの摩天楼
ユーザー ngtkanangtkana
提出日時 2020-01-30 11:01:53
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 189 ms / 2,000 ms
コード長 1,142 bytes
コンパイル時間 2,300 ms
コンパイル使用メモリ 108,032 KB
実行使用メモリ 32,632 KB
最終ジャッジ日時 2024-09-16 03:27:39
合計ジャッジ時間 4,372 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
19,200 KB
testcase_01 AC 24 ms
18,816 KB
testcase_02 AC 25 ms
18,944 KB
testcase_03 AC 26 ms
19,200 KB
testcase_04 AC 25 ms
19,072 KB
testcase_05 AC 25 ms
19,072 KB
testcase_06 AC 25 ms
19,072 KB
testcase_07 AC 25 ms
19,072 KB
testcase_08 AC 29 ms
19,200 KB
testcase_09 AC 26 ms
19,072 KB
testcase_10 AC 27 ms
19,072 KB
testcase_11 AC 27 ms
19,072 KB
testcase_12 AC 25 ms
19,072 KB
testcase_13 AC 40 ms
23,488 KB
testcase_14 AC 40 ms
23,424 KB
testcase_15 AC 41 ms
23,652 KB
testcase_16 AC 41 ms
23,236 KB
testcase_17 AC 42 ms
24,320 KB
testcase_18 AC 64 ms
25,728 KB
testcase_19 AC 68 ms
28,928 KB
testcase_20 AC 96 ms
28,660 KB
testcase_21 AC 140 ms
30,076 KB
testcase_22 AC 182 ms
31,988 KB
testcase_23 AC 189 ms
32,632 KB
testcase_24 AC 176 ms
32,508 KB
testcase_25 AC 181 ms
32,508 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Linq;
using System.Collections.Generic;

public static class Program{
    public static void Main() {
        int n=int.Parse(Console.ReadLine());
        var graph=Enumerable.Range(0,n)
            .Select(_=>new List<int>()).ToArray();
        for(int i=0;i<n-1;i++){
            int[]uv=Console.ReadLine().Split().Select(int.Parse).ToArray();
            graph[uv[0]].Add(uv[1]);
            graph[uv[1]].Add(uv[0]);
        }

        bool[]ckd=new bool[n];
        Action<int>dfs=null;
        dfs=x=>{
            ckd[x]=true;
            foreach(int y in graph[x]){
                if(!ckd[y])dfs(y);
            }
        };
        int counter=0;
        for(int i=0;i<n;i++){
            if(!ckd[i]){
                counter++;
                dfs(i);
            }
        }
        if(counter!=2) {
            Console.WriteLine(counter==1?"Bob":"Alice");
            return;
        }
        for(int i=0;i<n;i++){
            if(graph[i].Count!=0&&graph[i].Count!=2){
                Console.WriteLine("Alice");
                return;
            }
        }
        Console.WriteLine("Bob");
    }
}
0