結果

問題 No.2780 The Bottle Imp
ユーザー ButterflvButterflv
提出日時 2024-06-08 14:19:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 265 ms / 2,000 ms
コード長 2,229 bytes
コンパイル時間 399 ms
コンパイル使用メモリ 82,000 KB
実行使用メモリ 123,724 KB
最終ジャッジ日時 2024-06-08 14:19:36
合計ジャッジ時間 8,156 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,352 KB
testcase_01 AC 40 ms
52,480 KB
testcase_02 AC 37 ms
52,480 KB
testcase_03 AC 37 ms
52,480 KB
testcase_04 AC 38 ms
52,352 KB
testcase_05 AC 38 ms
52,480 KB
testcase_06 AC 38 ms
52,480 KB
testcase_07 AC 249 ms
90,448 KB
testcase_08 AC 215 ms
90,312 KB
testcase_09 AC 215 ms
88,868 KB
testcase_10 AC 219 ms
90,204 KB
testcase_11 AC 212 ms
89,760 KB
testcase_12 AC 260 ms
103,828 KB
testcase_13 AC 265 ms
97,476 KB
testcase_14 AC 139 ms
89,876 KB
testcase_15 AC 132 ms
89,748 KB
testcase_16 AC 138 ms
90,500 KB
testcase_17 AC 129 ms
90,020 KB
testcase_18 AC 139 ms
89,644 KB
testcase_19 AC 128 ms
89,640 KB
testcase_20 AC 147 ms
90,284 KB
testcase_21 AC 142 ms
90,276 KB
testcase_22 AC 178 ms
82,328 KB
testcase_23 AC 132 ms
86,508 KB
testcase_24 AC 205 ms
87,440 KB
testcase_25 AC 238 ms
93,696 KB
testcase_26 AC 189 ms
87,992 KB
testcase_27 AC 149 ms
95,276 KB
testcase_28 AC 165 ms
95,152 KB
testcase_29 AC 140 ms
87,144 KB
testcase_30 AC 153 ms
85,416 KB
testcase_31 AC 193 ms
96,384 KB
testcase_32 AC 111 ms
94,708 KB
testcase_33 AC 216 ms
119,052 KB
testcase_34 AC 225 ms
123,724 KB
testcase_35 AC 95 ms
80,896 KB
testcase_36 AC 40 ms
52,352 KB
testcase_37 AC 39 ms
52,352 KB
testcase_38 AC 107 ms
81,536 KB
testcase_39 AC 191 ms
104,796 KB
testcase_40 AC 186 ms
104,876 KB
testcase_41 AC 188 ms
104,536 KB
testcase_42 AC 36 ms
53,064 KB
testcase_43 AC 36 ms
54,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def scc(N,edges):
    M=len(edges)
    start=[0]*(N+1)
    elist=[0]*M
    for e in edges:
        start[e[0]+1]+=1
    for i in range(1,N+1):
        start[i]+=start[i-1]
    counter=start[:]
    for e in edges:
        elist[counter[e[0]]]=e[1]
        counter[e[0]]+=1
    visited=[]
    low=[0]*N
    Ord=[-1]*N
    ids=[0]*N
    NG=[0,0]
    def dfs(v):
        stack=[(v,-1,0),(v,-1,1)]
        while stack:
            v,bef,t=stack.pop()
            if t:
                if bef!=-1 and Ord[v]!=-1:
                    low[bef]=min(low[bef],Ord[v])
                    stack.pop()
                    continue
                low[v]=NG[0]
                Ord[v]=NG[0]
                NG[0]+=1
                visited.append(v)
                for i in range(start[v],start[v+1]):
                    to=elist[i]
                    if Ord[to]==-1:
                        stack.append((to,v,0))
                        stack.append((to,v,1))
                    else:
                        low[v]=min(low[v],Ord[to])
            else:
                if low[v]==Ord[v]:
                    while(True):
                        u=visited.pop()
                        Ord[u]=N
                        ids[u]=NG[1]
                        if u==v:
                            break
                    NG[1]+=1
                low[bef]=min(low[bef],low[v])
    for i in range(N):
        if Ord[i]==-1:
            dfs(i)
    for i in range(N):
        ids[i]=NG[1]-1-ids[i]
    group_num=NG[1]
    counts=[0]*group_num
    for x in ids:
        counts[x]+=1
    groups=[[] for i in range(group_num)]
    for i in range(N):
        groups[ids[i]].append(i)
    return groups

_N=int(input())
edge=[]

edge2 = [[] for i in range(_N)]

for i in range(_N):
  list_=list(map(int,input().split()))
  for j in range(1, len(list_)):
    edge.append((i, list_[j]-1))
    edge2[i].append(list_[j]-1)

res = scc(_N, edge)
# print(res)

if 0 not in res[0]:
  print("No");
  exit()

for i in range(len(res)-1):
  # i番目と i+1番目が連結かどうか
  set_ = set(res[i+1])
  flag = False
  for v in res[i]:
    for nv in edge2[v]:
      if nv in set_:
        flag=True
  if flag==False:
    print("No"); exit()

print("Yes")
0