結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,624 KB
testcase_01 AC 26 ms
10,752 KB
testcase_02 AC 27 ms
10,752 KB
testcase_03 AC 28 ms
10,752 KB
testcase_04 AC 28 ms
10,880 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 28 ms
10,752 KB
testcase_09 AC 30 ms
10,624 KB
testcase_10 AC 27 ms
10,880 KB
testcase_11 AC 26 ms
10,624 KB
testcase_12 AC 26 ms
10,752 KB
testcase_13 AC 67 ms
13,184 KB
testcase_14 AC 65 ms
13,312 KB
testcase_15 AC 66 ms
13,440 KB
testcase_16 AC 78 ms
13,312 KB
testcase_17 AC 67 ms
13,184 KB
testcase_18 AC 147 ms
18,688 KB
testcase_19 AC 154 ms
18,688 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 469 ms
35,968 KB
testcase_24 AC 470 ms
36,736 KB
testcase_25 AC 484 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)

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