結果

問題 No.679 不思議マーケット
ユーザー ああいいああいい
提出日時 2022-02-23 22:39:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 77 ms / 2,000 ms
コード長 487 bytes
コンパイル時間 519 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 74,104 KB
最終ジャッジ日時 2024-07-01 23:06:33
合計ジャッジ時間 2,085 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,448 KB
testcase_01 AC 39 ms
52,748 KB
testcase_02 AC 39 ms
53,600 KB
testcase_03 AC 77 ms
74,104 KB
testcase_04 AC 67 ms
69,432 KB
testcase_05 AC 66 ms
70,232 KB
testcase_06 AC 69 ms
72,512 KB
testcase_07 AC 49 ms
56,020 KB
testcase_08 AC 67 ms
72,304 KB
testcase_09 AC 38 ms
52,156 KB
testcase_10 AC 54 ms
62,592 KB
testcase_11 AC 50 ms
56,720 KB
testcase_12 AC 57 ms
64,464 KB
testcase_13 AC 59 ms
64,912 KB
testcase_14 AC 57 ms
64,804 KB
testcase_15 AC 54 ms
62,900 KB
testcase_16 AC 39 ms
53,008 KB
testcase_17 AC 39 ms
53,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())
G = [[] for _ in range(n+1)]
Gnum = [0] * (n+1)
for _ in range(m):
    g,r = map(int,input().split())
    h = list(map(int,input().split()))
    for k in h:
        G[k].append(g)
        Gnum[g] += 1
top = []
ans = 0
for i in range(1,n+1):
    if Gnum[i] == 0:
        top.append(i)
        ans += 1
while top:
    now = top.pop()
    for v in G[now]:
        Gnum[v] -= 1
        if Gnum[v] == 0:
            top.append(v)
            ans += 1
print(ans)
0