結果

問題 No.30 たこやき工場
ユーザー ああいいああいい
提出日時 2022-03-02 15:13:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 67 ms / 5,000 ms
コード長 717 bytes
コンパイル時間 318 ms
コンパイル使用メモリ 82,336 KB
実行使用メモリ 72,328 KB
最終ジャッジ日時 2024-07-16 08:08:47
合計ジャッジ時間 1,976 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,440 KB
testcase_01 AC 40 ms
55,472 KB
testcase_02 AC 41 ms
54,868 KB
testcase_03 AC 41 ms
54,188 KB
testcase_04 AC 39 ms
55,276 KB
testcase_05 AC 40 ms
54,068 KB
testcase_06 AC 40 ms
54,696 KB
testcase_07 AC 43 ms
54,136 KB
testcase_08 AC 41 ms
55,544 KB
testcase_09 AC 42 ms
55,432 KB
testcase_10 AC 67 ms
72,328 KB
testcase_11 AC 40 ms
54,876 KB
testcase_12 AC 39 ms
53,860 KB
testcase_13 AC 42 ms
55,016 KB
testcase_14 AC 42 ms
55,008 KB
testcase_15 AC 42 ms
55,364 KB
testcase_16 AC 44 ms
56,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
M = int(input())
G = [[] for _ in range(N+1)]
rG = [[] for _ in range(N+1)]
Gnum = [0] * (N + 1)
for _ in range(M):
    p,q,r = map(int,input().split())
    G[p].append(r)
    rG[r].append((p,q))
    Gnum[r] += 1
top = []
gaibu = set()
from collections import deque
q = deque()
for i in range(1,N+1):
    if Gnum[i] == 0:
        q.append(i)
        gaibu.add(i)
while q:
    now = q.popleft()
    top.append(now)
    for v in G[now]:
        Gnum[v] -= 1
        if Gnum[v] == 0:
            q.append(v)
dp = [0] * (N+1)
dp[N] = 1
for now in reversed(top):
    for v,c in rG[now]:
        dp[v] += dp[now] * c
for i in range(1,N):
    if i in gaibu:
        print(dp[i])
    else:
        print(0)

0