結果

問題 No.977 アリス仕掛けの摩天楼
ユーザー ngtkanangtkana
提出日時 2020-01-30 11:18:52
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 1,195 bytes
コンパイル時間 2,069 ms
コンパイル使用メモリ 107,776 KB
実行使用メモリ 32,756 KB
最終ジャッジ日時 2024-09-16 03:28:11
合計ジャッジ時間 3,940 ms
ジャッジサーバーID
(参考情報)
judge5 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 33 ms
19,200 KB
testcase_04 AC 30 ms
19,072 KB
testcase_05 AC 31 ms
19,072 KB
testcase_06 AC 31 ms
19,200 KB
testcase_07 AC 30 ms
19,200 KB
testcase_08 AC 31 ms
19,200 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 31 ms
19,200 KB
testcase_12 AC 31 ms
19,200 KB
testcase_13 AC 48 ms
23,424 KB
testcase_14 AC 48 ms
23,500 KB
testcase_15 AC 49 ms
23,296 KB
testcase_16 AC 48 ms
23,552 KB
testcase_17 AC 47 ms
23,296 KB
testcase_18 AC 78 ms
25,856 KB
testcase_19 WA -
testcase_20 AC 114 ms
27,520 KB
testcase_21 AC 176 ms
30,324 KB
testcase_22 AC 220 ms
31,988 KB
testcase_23 WA -
testcase_24 AC 213 ms
32,504 KB
testcase_25 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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];
        var que=new Queue<int>();
        int counter=0;
        for(int i=0;i<n;i++){
            if(ckd[i])continue;
            que.Enqueue(i);
            while(0<que.Count){
                int x=que.Dequeue();
                ckd[x]=true;
                foreach(int y in graph[x]){
                    if(!ckd[y])que.Enqueue(y);
                }
            }
        }
        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