結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,880 KB
testcase_01 AC 25 ms
10,752 KB
testcase_02 AC 25 ms
10,752 KB
testcase_03 AC 26 ms
10,752 KB
testcase_04 AC 26 ms
10,752 KB
testcase_05 AC 26 ms
10,880 KB
testcase_06 AC 26 ms
10,752 KB
testcase_07 AC 26 ms
10,880 KB
testcase_08 AC 26 ms
10,752 KB
testcase_09 AC 29 ms
10,752 KB
testcase_10 AC 26 ms
10,880 KB
testcase_11 AC 27 ms
10,752 KB
testcase_12 AC 27 ms
10,752 KB
testcase_13 AC 67 ms
13,440 KB
testcase_14 AC 68 ms
13,312 KB
testcase_15 AC 66 ms
13,312 KB
testcase_16 AC 67 ms
13,568 KB
testcase_17 AC 67 ms
13,440 KB
testcase_18 AC 150 ms
18,688 KB
testcase_19 AC 161 ms
18,688 KB
testcase_20 AC 233 ms
23,424 KB
testcase_21 AC 341 ms
30,336 KB
testcase_22 AC 421 ms
35,584 KB
testcase_23 AC 467 ms
35,968 KB
testcase_24 AC 477 ms
36,864 KB
testcase_25 AC 465 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[i] != 0]) else 'Alice')
0