結果

問題 No.2780 The Bottle Imp
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-06-07 22:39:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 368 ms / 2,000 ms
コード長 1,001 bytes
コンパイル時間 186 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 117,680 KB
最終ジャッジ日時 2024-06-08 10:35:33
合計ジャッジ時間 8,600 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,224 KB
testcase_01 AC 38 ms
51,840 KB
testcase_02 AC 42 ms
52,096 KB
testcase_03 AC 36 ms
52,096 KB
testcase_04 AC 36 ms
52,352 KB
testcase_05 AC 36 ms
51,840 KB
testcase_06 AC 35 ms
52,224 KB
testcase_07 AC 237 ms
93,608 KB
testcase_08 AC 291 ms
95,436 KB
testcase_09 AC 279 ms
95,228 KB
testcase_10 AC 278 ms
95,636 KB
testcase_11 AC 249 ms
93,184 KB
testcase_12 AC 368 ms
117,680 KB
testcase_13 AC 366 ms
117,512 KB
testcase_14 AC 131 ms
82,048 KB
testcase_15 AC 132 ms
81,536 KB
testcase_16 AC 129 ms
81,792 KB
testcase_17 AC 127 ms
81,664 KB
testcase_18 AC 133 ms
81,664 KB
testcase_19 AC 133 ms
81,792 KB
testcase_20 AC 130 ms
81,792 KB
testcase_21 AC 131 ms
81,920 KB
testcase_22 AC 188 ms
82,800 KB
testcase_23 AC 138 ms
81,536 KB
testcase_24 AC 252 ms
91,760 KB
testcase_25 AC 314 ms
102,540 KB
testcase_26 AC 214 ms
87,808 KB
testcase_27 AC 147 ms
89,856 KB
testcase_28 AC 143 ms
89,728 KB
testcase_29 AC 181 ms
91,264 KB
testcase_30 AC 138 ms
89,344 KB
testcase_31 AC 196 ms
99,840 KB
testcase_32 AC 84 ms
78,464 KB
testcase_33 AC 207 ms
116,608 KB
testcase_34 AC 235 ms
117,256 KB
testcase_35 AC 92 ms
77,184 KB
testcase_36 AC 37 ms
52,096 KB
testcase_37 AC 35 ms
51,968 KB
testcase_38 AC 91 ms
77,312 KB
testcase_39 AC 180 ms
96,688 KB
testcase_40 AC 179 ms
96,692 KB
testcase_41 AC 180 ms
96,952 KB
testcase_42 AC 37 ms
52,096 KB
testcase_43 AC 36 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
e=[[] for i in range(n)]
re=[[] for i in range(n)]
for i in range(n):
  m,*t,=map(int,input().split())
  for j in range(m):
    e[i]+=[t[j]-1]
    re[t[j]-1]+=[i]
v=[0]*n
g=[0]*n
o=[]
for i in range(n):
  if v[i]==0:
    q=[i]
    while len(q)>0:
      s=q[-1]
      v[s]=1
      while g[s]<len(e[s]):
        t=e[s][g[s]]
        if v[t]==0:
          break
        g[s]+=1
      if g[s]<len(e[s]):
        q+=[t]
      else:
        o+=[s]
        q.pop()
v=[0]*n
g=[0]*n
p=[0]*n
c=0
for i in o[::-1]:
  if v[i]==0:
    s=i
    v[s]=1
    q=[s]
    for s in q:
      p[s]=c
      for t in re[s]:
        if v[t]==0:
          v[t]=1
          q+=[t]
    c+=1
E=[[] for i in range(c)]
d=[0]*c
for s in range(n):
  for t in e[s]:
    if p[s]!=p[t]:
      E[p[s]]+=[p[t]]
      d[p[t]]+=1
r=[]
q=[i for i in range(c) if d[i]==0]
for s in q:
  r+=[s]
  for t in E[s]:
    d[t]-=1
    if d[t]==0:
      q+=[t]
f=r[0]==p[0]
for i in range(c-1):
  f&=r[i+1] in E[r[i]]
print(["No","Yes"][f])
0