結果

問題 No.2780 The Bottle Imp
ユーザー 👑 amentorimaruamentorimaru
提出日時 2024-06-03 19:22:21
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 1,318 bytes
コンパイル時間 287 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 41,880 KB
最終ジャッジ日時 2024-06-08 10:27:18
合計ジャッジ時間 7,523 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,624 KB
testcase_01 AC 26 ms
10,624 KB
testcase_02 AC 26 ms
10,624 KB
testcase_03 AC 25 ms
10,752 KB
testcase_04 AC 24 ms
10,752 KB
testcase_05 AC 24 ms
10,752 KB
testcase_06 AC 27 ms
10,624 KB
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 AC 374 ms
41,880 KB
testcase_13 AC 363 ms
41,608 KB
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 AC 141 ms
23,548 KB
testcase_28 AC 146 ms
23,540 KB
testcase_29 RE -
testcase_30 AC 126 ms
24,092 KB
testcase_31 AC 294 ms
37,632 KB
testcase_32 AC 64 ms
13,056 KB
testcase_33 RE -
testcase_34 RE -
testcase_35 AC 59 ms
13,696 KB
testcase_36 AC 24 ms
10,752 KB
testcase_37 AC 24 ms
10,880 KB
testcase_38 AC 57 ms
13,568 KB
testcase_39 RE -
testcase_40 RE -
testcase_41 RE -
testcase_42 AC 26 ms
10,880 KB
testcase_43 AC 24 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
def read_values(): return tuple(map(int, input().split()))
def read_list(): return list(read_values())

def scc(N, G, RG):
    order = []
    used = [0]*N
    group = [None]*N
    def dfs(s):
        used[s] = 1
        for t in G[s]:
            if not used[t]:
                dfs(t)
        order.append(s)
    def rdfs(s, col):
        group[s] = col
        used[s] = 1
        for t in RG[s]:
            if not used[t]:
                rdfs(t, col)
    for i in range(N):
        if not used[i]:
            dfs(i)
    used = [0]*N
    label = 0
    for s in reversed(order):
        if not used[s]:
            rdfs(s, label)
            label += 1
    return label, group

def main():
    n = int(input())
    g = [list() for _ in range(n)]
    rg = [list() for _ in range(n)]
    for i in range(n):
        a = read_list()
        for j in range(1,a[0]+1):
            g[i].append(a[j]-1)
            rg[a[j]-1].append(i)
    r,res = scc(n,g,rg)
    if res[0]:
        print("No")
        return
    l = [False] * r    
    l[-1] = True
    for i in range(n):
        lab = res[i]
        for v in g[i]:
            l[lab] |= lab + 1 == res[v]
            
    if all(l):
        print("Yes")
    else:
        print("No")
        
if __name__ == "__main__":
    main()
0