結果

問題 No.30 たこやき工場
ユーザー 👑 rin204rin204
提出日時 2022-07-10 15:37:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 69 ms / 5,000 ms
コード長 585 bytes
コンパイル時間 327 ms
コンパイル使用メモリ 82,120 KB
実行使用メモリ 70,136 KB
最終ジャッジ日時 2024-06-11 03:53:50
合計ジャッジ時間 1,779 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,840 KB
testcase_01 AC 38 ms
52,352 KB
testcase_02 AC 40 ms
52,268 KB
testcase_03 AC 39 ms
52,224 KB
testcase_04 AC 39 ms
52,352 KB
testcase_05 AC 38 ms
52,224 KB
testcase_06 AC 39 ms
52,480 KB
testcase_07 AC 39 ms
51,968 KB
testcase_08 AC 45 ms
53,120 KB
testcase_09 AC 44 ms
52,992 KB
testcase_10 AC 69 ms
70,136 KB
testcase_11 AC 42 ms
52,992 KB
testcase_12 AC 39 ms
52,224 KB
testcase_13 AC 39 ms
52,608 KB
testcase_14 AC 42 ms
53,376 KB
testcase_15 AC 43 ms
53,504 KB
testcase_16 AC 44 ms
53,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
m = int(input())
in_ = [0] * n
edges = [[] for _ in range(n)]

for _ in range(m):
    p, q, r = map(int, input().split())
    p -= 1
    r -= 1
    in_[p] += 1
    edges[r].append((p, q))


stack = []
for i in range(n):
    if in_[i] == 0:
        stack.append(i)
dp = [0] * n
dp[n - 1] = 1
ans = [0] * n
while stack:
    pos = stack.pop()
    if len(edges[pos]) == 0:
        ans[pos] = dp[pos]
    for npos, c in edges[pos]:
        dp[npos] += dp[pos] * c
        in_[npos] -= 1
        if in_[npos] == 0:
            stack.append(npos)


print(*ans[:-1], sep="\n")
0