結果

問題 No.30 たこやき工場
ユーザー ayaoniayaoni
提出日時 2020-12-04 16:46:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 53 ms / 5,000 ms
コード長 1,060 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 82,564 KB
実行使用メモリ 64,408 KB
最終ジャッジ日時 2024-06-01 03:05:54
合計ジャッジ時間 1,632 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,716 KB
testcase_01 AC 39 ms
53,404 KB
testcase_02 AC 40 ms
52,728 KB
testcase_03 AC 41 ms
52,592 KB
testcase_04 AC 40 ms
52,808 KB
testcase_05 AC 40 ms
54,132 KB
testcase_06 AC 41 ms
53,092 KB
testcase_07 AC 39 ms
53,816 KB
testcase_08 AC 40 ms
53,620 KB
testcase_09 AC 44 ms
53,476 KB
testcase_10 AC 53 ms
64,408 KB
testcase_11 AC 41 ms
54,432 KB
testcase_12 AC 40 ms
52,880 KB
testcase_13 AC 40 ms
53,896 KB
testcase_14 AC 41 ms
53,668 KB
testcase_15 AC 39 ms
53,572 KB
testcase_16 AC 40 ms
53,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10**7)
def I(): return int(sys.stdin.readline().rstrip())
def MI(): return map(int,sys.stdin.readline().rstrip().split())
def LI(): return list(map(int,sys.stdin.readline().rstrip().split()))
def LI2(): return list(map(int,sys.stdin.readline().rstrip()))
def S(): return sys.stdin.readline().rstrip()
def LS(): return list(sys.stdin.readline().rstrip().split())
def LS2(): return list(sys.stdin.readline().rstrip())


N,M = I(),I()
Graph = [[] for _ in range(N+1)]
flag = [1]*(N+1)
for _ in range(M):
    P,Q,R = MI()
    Graph[P].append((R,Q))
    flag[R] = 0


def f(i):
    if ANS[i] != -1:
        return ANS[i]
    if i == N:
        ANS[N] = 1
        return 1
    res = 0
    for j,c in Graph[i]:
        if ANS[j] != -1:
            res += ANS[j]*c
        else:
            x = f(j)
            ANS[j] = x
            res += x*c
    ANS[i] = res
    return res


ANS = [-1]*(N+1)
for i in range(1,N+1):
    if ANS[i] == -1:
        f(i)

ANS = [ANS[i] if flag[i] == 1 else 0 for i in range(1,N)]
print(*ANS,sep='\n')
0