結果

問題 No.2780 The Bottle Imp
ユーザー tipstar0125tipstar0125
提出日時 2024-06-07 22:58:09
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 649 bytes
コンパイル時間 1,496 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 101,120 KB
最終ジャッジ日時 2024-06-08 10:37:00
合計ジャッジ時間 6,777 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,632 KB
testcase_01 AC 42 ms
53,376 KB
testcase_02 AC 43 ms
53,504 KB
testcase_03 AC 42 ms
53,888 KB
testcase_04 AC 41 ms
53,632 KB
testcase_05 AC 39 ms
53,376 KB
testcase_06 AC 39 ms
53,376 KB
testcase_07 AC 161 ms
84,924 KB
testcase_08 AC 201 ms
89,472 KB
testcase_09 AC 170 ms
85,376 KB
testcase_10 AC 206 ms
88,192 KB
testcase_11 AC 165 ms
84,992 KB
testcase_12 AC 185 ms
92,288 KB
testcase_13 AC 191 ms
96,640 KB
testcase_14 AC 118 ms
80,000 KB
testcase_15 AC 115 ms
80,384 KB
testcase_16 AC 119 ms
80,128 KB
testcase_17 AC 118 ms
80,000 KB
testcase_18 AC 116 ms
79,872 KB
testcase_19 AC 108 ms
80,128 KB
testcase_20 AC 109 ms
80,384 KB
testcase_21 AC 112 ms
80,256 KB
testcase_22 AC 138 ms
79,744 KB
testcase_23 AC 122 ms
80,512 KB
testcase_24 AC 162 ms
87,168 KB
testcase_25 AC 208 ms
94,208 KB
testcase_26 AC 147 ms
82,560 KB
testcase_27 AC 136 ms
85,504 KB
testcase_28 AC 136 ms
86,144 KB
testcase_29 WA -
testcase_30 AC 112 ms
83,328 KB
testcase_31 AC 187 ms
92,416 KB
testcase_32 AC 82 ms
76,928 KB
testcase_33 AC 189 ms
101,120 KB
testcase_34 AC 195 ms
100,864 KB
testcase_35 AC 90 ms
77,312 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 92 ms
77,312 KB
testcase_39 AC 160 ms
89,984 KB
testcase_40 AC 165 ms
90,112 KB
testcase_41 WA -
testcase_42 AC 43 ms
53,632 KB
testcase_43 AC 41 ms
53,632 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)

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