結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 26 ms
10,880 KB
testcase_02 AC 26 ms
10,880 KB
testcase_03 AC 26 ms
10,752 KB
testcase_04 AC 27 ms
10,624 KB
testcase_05 AC 27 ms
10,752 KB
testcase_06 AC 27 ms
10,752 KB
testcase_07 AC 25 ms
10,752 KB
testcase_08 AC 25 ms
10,752 KB
testcase_09 AC 26 ms
10,752 KB
testcase_10 WA -
testcase_11 AC 26 ms
10,880 KB
testcase_12 AC 25 ms
10,880 KB
testcase_13 AC 63 ms
13,184 KB
testcase_14 AC 63 ms
13,184 KB
testcase_15 AC 67 ms
13,184 KB
testcase_16 AC 66 ms
13,184 KB
testcase_17 AC 66 ms
13,184 KB
testcase_18 AC 149 ms
18,176 KB
testcase_19 WA -
testcase_20 AC 216 ms
22,400 KB
testcase_21 AC 315 ms
29,056 KB
testcase_22 AC 385 ms
34,048 KB
testcase_23 AC 446 ms
35,328 KB
testcase_24 AC 441 ms
35,200 KB
testcase_25 AC 443 ms
35,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

    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)

print('Bob' if all(D) else 'Alice')
0