結果
問題 | No.30 たこやき工場 |
ユーザー | sotanishy |
提出日時 | 2021-08-09 13:29:04 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 52 ms / 5,000 ms |
コード長 | 940 bytes |
コンパイル時間 | 712 ms |
コンパイル使用メモリ | 82,216 KB |
実行使用メモリ | 65,040 KB |
最終ジャッジ日時 | 2024-09-21 12:25:45 |
合計ジャッジ時間 | 1,985 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 37 ms
53,160 KB |
testcase_01 | AC | 38 ms
53,480 KB |
testcase_02 | AC | 39 ms
52,268 KB |
testcase_03 | AC | 39 ms
53,636 KB |
testcase_04 | AC | 42 ms
52,652 KB |
testcase_05 | AC | 38 ms
52,832 KB |
testcase_06 | AC | 40 ms
52,944 KB |
testcase_07 | AC | 37 ms
52,880 KB |
testcase_08 | AC | 41 ms
53,440 KB |
testcase_09 | AC | 40 ms
53,932 KB |
testcase_10 | AC | 52 ms
65,040 KB |
testcase_11 | AC | 38 ms
52,820 KB |
testcase_12 | AC | 38 ms
52,620 KB |
testcase_13 | AC | 38 ms
52,480 KB |
testcase_14 | AC | 39 ms
54,280 KB |
testcase_15 | AC | 39 ms
53,972 KB |
testcase_16 | AC | 39 ms
53,568 KB |
ソースコード
import sys input = sys.stdin.readline def topological_sort(G): ret = [] start = [] par_count = [0] * len(G) for u in range(len(G)): for v, _ in G[u]: par_count[v] += 1 for v in range(len(G)): if par_count[v] == 0: start.append(v) while start: u = start.pop() ret.append(u) for v, _ in G[u]: par_count[v] -= 1 if par_count[v] == 0: start.append(v) if any(c > 0 for c in par_count): # G is not a DAG return None return ret N = int(input()) M = int(input()) G = [[] for _ in range(N)] for _ in range(M): P, Q, R = map(int, input().split()) P -= 1 R -= 1 G[R].append((P, Q)) order = topological_sort(G) ans = [0] * N ans[N-1] = 1 for v in order: if not G[v]: continue for u, c in G[v]: ans[u] += ans[v] * c ans[v] = 0 print(*ans[:-1], sep='\n')