結果

問題 No.1364 [Renaming] Road to Cherry from Zelkova
ユーザー rlangevinrlangevin
提出日時 2024-01-08 00:57:42
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 968 bytes
コンパイル時間 392 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 118,040 KB
最終ジャッジ日時 2024-09-27 19:33:53
合計ジャッジ時間 13,304 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,760 KB
testcase_01 AC 34 ms
54,400 KB
testcase_02 AC 36 ms
53,888 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 108 ms
87,652 KB
testcase_24 AC 81 ms
81,664 KB
testcase_25 AC 151 ms
93,324 KB
testcase_26 AC 217 ms
101,712 KB
testcase_27 AC 167 ms
95,060 KB
testcase_28 AC 122 ms
88,976 KB
testcase_29 AC 160 ms
95,348 KB
testcase_30 AC 126 ms
88,732 KB
testcase_31 AC 117 ms
86,456 KB
testcase_32 AC 138 ms
90,248 KB
testcase_33 AC 224 ms
100,948 KB
testcase_34 AC 236 ms
99,036 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 137 ms
94,116 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 AC 124 ms
101,152 KB
testcase_44 AC 124 ms
97,852 KB
testcase_45 AC 107 ms
94,616 KB
testcase_46 AC 54 ms
79,260 KB
testcase_47 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

from collections import deque
def topsort(G):
    Q = deque()
    N = len(G)
    count = [0] * N
    for u in range(N):
        for v, _, _ in G[u]:
            count[v] += 1

    for u in range(N):
        if count[u] == 0:
            Q.append(u)
    anslst = []
    while Q:
        u = Q.pop()
        anslst.append(u)
        for v, _, _ in G[u]:
            count[v] -= 1
            if count[v] == 0:
                Q.append(v)
    return anslst


N, M = map(int, input().split())
G = [[] for i in range(N + 1)]
for i in range(M):
    u, v, l, a = map(int, input().split())
    G[u].append((v, l, a))

dp = [0] * (N + 1)
dp_sum = [0] * (N + 1)
dp[0] = 1
L = topsort(G)
if len(L) != N + 1:
    print("INF")
    exit()

mod = 10**9 + 7    
for u in L:
    for v, l, a in G[u]:
        dp[v] += dp[u] * a
        dp[v] %= mod
        dp_sum[v] += dp_sum[u] + dp[u] * l * a
        dp_sum[v] %= mod
        
print(dp_sum[-1])
0