結果

問題 No.977 アリス仕掛けの摩天楼
ユーザー toyuzukotoyuzuko
提出日時 2020-03-18 23:01:58
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 913 bytes
コンパイル時間 131 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 36,864 KB
最終ジャッジ日時 2024-05-08 02:50:09
合計ジャッジ時間 4,573 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,880 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 29 ms
10,880 KB
testcase_04 AC 28 ms
10,880 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 28 ms
10,880 KB
testcase_07 AC 28 ms
10,752 KB
testcase_08 AC 27 ms
10,752 KB
testcase_09 AC 28 ms
10,880 KB
testcase_10 WA -
testcase_11 AC 29 ms
10,752 KB
testcase_12 AC 29 ms
10,752 KB
testcase_13 AC 73 ms
13,312 KB
testcase_14 AC 70 ms
13,440 KB
testcase_15 AC 69 ms
13,312 KB
testcase_16 AC 70 ms
13,440 KB
testcase_17 AC 69 ms
13,184 KB
testcase_18 AC 161 ms
18,816 KB
testcase_19 WA -
testcase_20 AC 243 ms
23,296 KB
testcase_21 AC 356 ms
30,336 KB
testcase_22 AC 444 ms
35,584 KB
testcase_23 AC 475 ms
36,096 KB
testcase_24 AC 508 ms
36,864 KB
testcase_25 AC 486 ms
36,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class Graph(): #non-directed
    def __init__(self,n,edge):
        self.n = n
        self.graph = [[] for _ in range(n)]
        self.deg = [0 for _ in range(n)]
        for e in edge:
            self.graph[e[0]].append(e[1])
            self.graph[e[1]].append(e[0])
            self.deg[e[0]] += 1
            self.deg[e[1]] += 1

    def DFS(self,s):
        visited = [0 for _ in range(self.n)]
        visited[s] = 1
        stack = [s]
        while stack:
            node = stack.pop()
            for adj in self.graph[node]:
                if not visited[adj]:
                    visited[adj] = 1
                    stack.append(adj)
        return visited

N = int(input())
E = [tuple(map(int, input().split())) for _ in range(N - 1)]

G = Graph(N, E)
D = G.DFS(0) if G.deg[0] > 0 else G.DFS(1)

print('Bob' if all(D) or all([D[i] and G.deg[i] == 2 for i in range(N) if G.deg != 0]) else 'Alice')
0