結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 35 ms
10,752 KB
testcase_03 AC 28 ms
10,624 KB
testcase_04 AC 31 ms
10,752 KB
testcase_05 AC 28 ms
10,752 KB
testcase_06 AC 29 ms
10,752 KB
testcase_07 AC 259 ms
28,160 KB
testcase_08 AC 255 ms
28,044 KB
testcase_09 AC 253 ms
28,156 KB
testcase_10 AC 265 ms
28,168 KB
testcase_11 AC 265 ms
28,288 KB
testcase_12 AC 459 ms
42,524 KB
testcase_13 AC 458 ms
42,244 KB
testcase_14 AC 118 ms
20,804 KB
testcase_15 AC 122 ms
20,932 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 124 ms
21,056 KB
testcase_19 AC 125 ms
20,940 KB
testcase_20 AC 129 ms
20,808 KB
testcase_21 WA -
testcase_22 AC 110 ms
17,908 KB
testcase_23 AC 126 ms
20,664 KB
testcase_24 AC 213 ms
25,276 KB
testcase_25 AC 346 ms
34,052 KB
testcase_26 AC 198 ms
24,424 KB
testcase_27 AC 150 ms
23,412 KB
testcase_28 AC 152 ms
23,408 KB
testcase_29 AC 174 ms
27,348 KB
testcase_30 AC 146 ms
24,276 KB
testcase_31 AC 339 ms
37,760 KB
testcase_32 AC 70 ms
13,056 KB
testcase_33 AC 416 ms
60,940 KB
testcase_34 AC 397 ms
58,752 KB
testcase_35 AC 59 ms
13,696 KB
testcase_36 AC 27 ms
10,752 KB
testcase_37 AC 28 ms
10,880 KB
testcase_38 AC 66 ms
13,696 KB
testcase_39 AC 266 ms
39,128 KB
testcase_40 AC 277 ms
39,240 KB
testcase_41 AC 279 ms
39,240 KB
testcase_42 AC 29 ms
10,624 KB
testcase_43 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
sys.setrecursionlimit(2000000)
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)
    
    l = [False] * r
    l[-1] = True
    for i in range(n):
        lab = res[i]
        if lab == r-1:
            continue
        for v in g[i]:
            l[lab] |= lab + 1 == res[v]
            
    if all(l):
        print("Yes")
    else:
        print("No")
        
if __name__ == "__main__":
    main()
0