結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
53,408 KB
testcase_01 AC 41 ms
53,628 KB
testcase_02 AC 47 ms
52,472 KB
testcase_03 AC 44 ms
52,644 KB
testcase_04 AC 46 ms
53,392 KB
testcase_05 AC 43 ms
52,272 KB
testcase_06 AC 44 ms
52,932 KB
testcase_07 AC 43 ms
52,740 KB
testcase_08 AC 43 ms
53,424 KB
testcase_09 AC 51 ms
54,320 KB
testcase_10 AC 60 ms
64,288 KB
testcase_11 AC 45 ms
53,416 KB
testcase_12 AC 43 ms
53,016 KB
testcase_13 AC 43 ms
52,756 KB
testcase_14 AC 47 ms
53,676 KB
testcase_15 AC 45 ms
54,144 KB
testcase_16 AC 48 ms
53,572 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