結果

問題 No.679 不思議マーケット
ユーザー 👑 rin204rin204
提出日時 2023-11-24 23:51:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 74 ms / 2,000 ms
コード長 522 bytes
コンパイル時間 831 ms
コンパイル使用メモリ 82,140 KB
実行使用メモリ 72,832 KB
最終ジャッジ日時 2024-09-26 09:50:16
合計ジャッジ時間 2,229 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,968 KB
testcase_01 AC 38 ms
51,584 KB
testcase_02 AC 38 ms
52,480 KB
testcase_03 AC 74 ms
72,832 KB
testcase_04 AC 68 ms
69,248 KB
testcase_05 AC 66 ms
68,480 KB
testcase_06 AC 69 ms
71,040 KB
testcase_07 AC 48 ms
55,168 KB
testcase_08 AC 67 ms
71,168 KB
testcase_09 AC 38 ms
52,096 KB
testcase_10 AC 55 ms
62,336 KB
testcase_11 AC 50 ms
55,808 KB
testcase_12 AC 58 ms
63,872 KB
testcase_13 AC 59 ms
65,024 KB
testcase_14 AC 58 ms
63,616 KB
testcase_15 AC 54 ms
61,696 KB
testcase_16 AC 39 ms
51,968 KB
testcase_17 AC 39 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
edges = [[] for _ in range(n)]
in_ = [0] * n
for _ in range(m):
    g, r = map(int, input().split())
    g -= 1
    H = list(map(int, input().split()))
    for h in H:
        edges[h - 1].append(g)
        in_[g] += 1

ans = 0
st = []
ans = 0
for i in range(n):
    if in_[i] == 0:
        st.append(i)
        ans += 1
while st:
    pos = st.pop()
    for npos in edges[pos]:
        in_[npos] -= 1
        if in_[npos] == 0:
            ans += 1
            st.append(npos)

print(ans)
0