結果

問題 No.2780 The Bottle Imp
ユーザー tipstar0125tipstar0125
提出日時 2024-06-07 23:12:16
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 808 bytes
コンパイル時間 261 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 101,248 KB
最終ジャッジ日時 2024-06-08 10:37:42
合計ジャッジ時間 6,774 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,632 KB
testcase_01 AC 39 ms
53,376 KB
testcase_02 AC 39 ms
53,248 KB
testcase_03 AC 42 ms
53,504 KB
testcase_04 AC 41 ms
53,376 KB
testcase_05 AC 44 ms
53,376 KB
testcase_06 AC 43 ms
53,504 KB
testcase_07 AC 151 ms
86,656 KB
testcase_08 AC 167 ms
86,912 KB
testcase_09 AC 155 ms
87,168 KB
testcase_10 AC 176 ms
86,528 KB
testcase_11 AC 146 ms
87,040 KB
testcase_12 AC 187 ms
95,136 KB
testcase_13 AC 178 ms
94,464 KB
testcase_14 AC 99 ms
78,848 KB
testcase_15 AC 105 ms
80,768 KB
testcase_16 AC 106 ms
80,512 KB
testcase_17 AC 98 ms
78,464 KB
testcase_18 AC 95 ms
78,464 KB
testcase_19 AC 96 ms
78,720 KB
testcase_20 AC 98 ms
78,464 KB
testcase_21 AC 94 ms
78,464 KB
testcase_22 AC 128 ms
80,512 KB
testcase_23 AC 103 ms
80,640 KB
testcase_24 AC 154 ms
86,016 KB
testcase_25 AC 173 ms
90,624 KB
testcase_26 AC 124 ms
83,584 KB
testcase_27 AC 134 ms
88,192 KB
testcase_28 AC 135 ms
88,192 KB
testcase_29 WA -
testcase_30 AC 117 ms
85,504 KB
testcase_31 AC 185 ms
97,664 KB
testcase_32 AC 79 ms
77,696 KB
testcase_33 AC 191 ms
101,248 KB
testcase_34 AC 194 ms
101,120 KB
testcase_35 AC 84 ms
78,080 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 81 ms
77,696 KB
testcase_39 AC 162 ms
93,448 KB
testcase_40 AC 171 ms
93,604 KB
testcase_41 WA -
testcase_42 AC 43 ms
53,376 KB
testcase_43 AC 42 ms
53,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
N=int(input())
G=[[] for _ in range(N*2)]

for i in range(N):
    MA=list(map(int,input().split()))
    if len(MA)==1:continue
    for j in range(1,len(MA)):
        v=i
        u=MA[j]-1
        G[v].append(u)
        G[v+N].append(u+N)

Q=deque()
vis=[False for _ in range(N*2)]
vis[0]=True
Q.append(0)

while len(Q):
    pos=Q.popleft()
    for nxt in G[pos]:
        if not vis[nxt]:
            vis[nxt]=True
            Q.append(nxt)
            continue
        if nxt+N<N and not vis[nxt+N]:
            vis[nxt+N]=True
            Q.append(nxt+N)
            continue
        if nxt-N>=0 and not vis[nxt-N]:
            vis[nxt+N]=True
            Q.append(nxt+N)

for i in range(N):
    if not vis[i] and not vis[i+N]:
        print("No")
        exit(0)
print("Yes")
0