結果

問題 No.679 不思議マーケット
ユーザー tktk_snsntktk_snsn
提出日時 2021-01-30 12:48:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 61 ms / 2,000 ms
コード長 498 bytes
コンパイル時間 215 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 64,512 KB
最終ジャッジ日時 2024-06-28 00:59:04
合計ジャッジ時間 1,799 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,968 KB
testcase_01 AC 42 ms
51,456 KB
testcase_02 AC 41 ms
51,712 KB
testcase_03 AC 61 ms
64,512 KB
testcase_04 AC 53 ms
61,312 KB
testcase_05 AC 52 ms
61,056 KB
testcase_06 AC 50 ms
60,288 KB
testcase_07 AC 43 ms
52,736 KB
testcase_08 AC 56 ms
61,568 KB
testcase_09 AC 40 ms
51,456 KB
testcase_10 AC 47 ms
59,264 KB
testcase_11 AC 43 ms
52,992 KB
testcase_12 AC 52 ms
60,672 KB
testcase_13 AC 55 ms
61,952 KB
testcase_14 AC 51 ms
60,416 KB
testcase_15 AC 42 ms
52,992 KB
testcase_16 AC 40 ms
51,456 KB
testcase_17 AC 39 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.buffer.readline
sys.setrecursionlimit(10 ** 7)

N, M = map(int, input().split())
G = [[] for _ in range(N)]
deg = [0] * N
for _ in range(M):
    x, p = map(int, input().split())
    x -= 1
    deg[x] += p
    for y in map(int, input().split()):
        G[y - 1].append(x)

ans = 0
que = [i for i, d in enumerate(deg) if d == 0]
while que:
    s = que.pop()
    ans += 1
    for t in G[s]:
        deg[t] -= 1
        if deg[t] == 0:
            que.append(t)
print(ans)
0