結果

問題 No.2780 The Bottle Imp
ユーザー tipstar0125tipstar0125
提出日時 2024-06-07 22:54:40
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 634 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 101,504 KB
最終ジャッジ日時 2024-06-08 10:36:38
合計ジャッジ時間 7,051 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,760 KB
testcase_01 AC 41 ms
53,504 KB
testcase_02 AC 40 ms
53,760 KB
testcase_03 AC 38 ms
53,760 KB
testcase_04 AC 39 ms
53,504 KB
testcase_05 AC 38 ms
53,504 KB
testcase_06 AC 37 ms
54,016 KB
testcase_07 AC 152 ms
85,172 KB
testcase_08 AC 198 ms
89,856 KB
testcase_09 AC 179 ms
85,804 KB
testcase_10 AC 196 ms
88,192 KB
testcase_11 AC 161 ms
85,248 KB
testcase_12 AC 179 ms
92,348 KB
testcase_13 AC 183 ms
97,152 KB
testcase_14 AC 107 ms
80,232 KB
testcase_15 AC 112 ms
80,256 KB
testcase_16 AC 114 ms
80,384 KB
testcase_17 AC 113 ms
80,392 KB
testcase_18 AC 111 ms
80,420 KB
testcase_19 AC 114 ms
80,128 KB
testcase_20 AC 109 ms
80,268 KB
testcase_21 AC 113 ms
80,384 KB
testcase_22 AC 139 ms
80,000 KB
testcase_23 AC 122 ms
80,512 KB
testcase_24 AC 163 ms
87,424 KB
testcase_25 AC 199 ms
94,208 KB
testcase_26 AC 143 ms
82,560 KB
testcase_27 AC 137 ms
85,800 KB
testcase_28 AC 132 ms
85,760 KB
testcase_29 WA -
testcase_30 AC 113 ms
83,456 KB
testcase_31 AC 192 ms
92,488 KB
testcase_32 AC 80 ms
77,056 KB
testcase_33 AC 194 ms
101,248 KB
testcase_34 AC 201 ms
101,504 KB
testcase_35 AC 84 ms
77,696 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 89 ms
77,632 KB
testcase_39 AC 164 ms
90,368 KB
testcase_40 AC 160 ms
90,096 KB
testcase_41 WA -
testcase_42 AC 41 ms
53,248 KB
testcase_43 AC 41 ms
54,144 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
        if v<u:G[v].append(u)
        else:G[v+N].append(u+N)

for i in range(N):
    G[i].append(i+N)
    G[i+N].append(i)

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)

ans=True
for i in range(N):
    ans&=vis[i]|vis[i+N]
if ans:print("Yes")
else:print("No")
0