結果

問題 No.2780 The Bottle Imp
ユーザー yuusaanyuusaan
提出日時 2024-06-06 23:04:00
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,112 bytes
コンパイル時間 487 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 42,804 KB
最終ジャッジ日時 2024-06-08 10:27:25
合計ジャッジ時間 7,031 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,624 KB
testcase_01 AC 26 ms
10,880 KB
testcase_02 AC 27 ms
10,624 KB
testcase_03 AC 28 ms
10,624 KB
testcase_04 AC 27 ms
10,496 KB
testcase_05 AC 27 ms
10,752 KB
testcase_06 AC 28 ms
10,880 KB
testcase_07 AC 152 ms
27,768 KB
testcase_08 AC 163 ms
27,892 KB
testcase_09 AC 160 ms
27,892 KB
testcase_10 AC 164 ms
27,640 KB
testcase_11 AC 154 ms
27,896 KB
testcase_12 AC 258 ms
40,376 KB
testcase_13 AC 256 ms
40,376 KB
testcase_14 AC 104 ms
23,324 KB
testcase_15 AC 104 ms
23,068 KB
testcase_16 AC 105 ms
23,196 KB
testcase_17 AC 103 ms
23,064 KB
testcase_18 AC 108 ms
23,196 KB
testcase_19 AC 107 ms
23,068 KB
testcase_20 AC 106 ms
23,196 KB
testcase_21 AC 105 ms
23,324 KB
testcase_22 AC 79 ms
17,532 KB
testcase_23 AC 96 ms
20,652 KB
testcase_24 AC 137 ms
24,772 KB
testcase_25 AC 206 ms
33,500 KB
testcase_26 AC 118 ms
24,244 KB
testcase_27 AC 135 ms
24,460 KB
testcase_28 AC 134 ms
24,344 KB
testcase_29 WA -
testcase_30 AC 114 ms
23,256 KB
testcase_31 AC 265 ms
38,744 KB
testcase_32 AC 72 ms
17,240 KB
testcase_33 AC 278 ms
42,680 KB
testcase_34 AC 274 ms
42,804 KB
testcase_35 AC 64 ms
17,216 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 65 ms
17,464 KB
testcase_39 AC 212 ms
35,124 KB
testcase_40 AC 209 ms
35,376 KB
testcase_41 WA -
testcase_42 AC 29 ms
10,624 KB
testcase_43 AC 28 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def can_spread_to_all(N, connections):
    from collections import deque
    
    # グラフの隣接リストを構築
    graph = [[] for _ in range(N + 1)]
    for i, conn in enumerate(connections, 1):
        for person in conn:
            graph[i].append(person)
    
    # BFSで到達可能なノードを探索
    visited = [False] * (N + 1)
    queue = deque([1])
    visited[1] = True
    
    while queue:
        current = queue.popleft()
        for neighbor in graph[current]:
            if not visited[neighbor]:
                visited[neighbor] = True
                queue.append(neighbor)
    
    # 全てのノードに訪問できたかチェック
    return all(visited[1:])

# 入力を読み込む
import sys
input = sys.stdin.read
data = input().split()

N = int(data[0])
index = 1
connections = []

for _ in range(N):
    M = int(data[index])
    if M == 0:
        connections.append([])
    else:
        connections.append([int(data[i]) for i in range(index + 1, index + M + 1)])
    index += M + 1

if can_spread_to_all(N, connections):
    print("Yes")
else:
    print("No")
0