結果

問題 No.1364 [Renaming] Road to Cherry from Zelkova
ユーザー chineristACchineristAC
提出日時 2021-01-22 22:15:34
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 875 bytes
コンパイル時間 374 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 120,508 KB
最終ジャッジ日時 2024-12-28 01:48:04
合計ジャッジ時間 13,271 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
53,632 KB
testcase_01 AC 45 ms
54,144 KB
testcase_02 AC 45 ms
53,632 KB
testcase_03 AC 44 ms
53,888 KB
testcase_04 AC 46 ms
54,272 KB
testcase_05 AC 46 ms
53,760 KB
testcase_06 AC 47 ms
54,016 KB
testcase_07 AC 45 ms
54,528 KB
testcase_08 AC 109 ms
79,104 KB
testcase_09 AC 71 ms
71,040 KB
testcase_10 AC 88 ms
78,080 KB
testcase_11 AC 94 ms
78,592 KB
testcase_12 AC 91 ms
78,464 KB
testcase_13 AC 320 ms
105,856 KB
testcase_14 AC 359 ms
107,972 KB
testcase_15 AC 357 ms
110,464 KB
testcase_16 AC 274 ms
98,844 KB
testcase_17 AC 177 ms
96,088 KB
testcase_18 AC 483 ms
120,508 KB
testcase_19 AC 494 ms
120,040 KB
testcase_20 AC 508 ms
119,988 KB
testcase_21 AC 501 ms
120,160 KB
testcase_22 AC 497 ms
120,212 KB
testcase_23 AC 134 ms
87,040 KB
testcase_24 AC 97 ms
81,024 KB
testcase_25 AC 169 ms
92,672 KB
testcase_26 AC 231 ms
100,736 KB
testcase_27 AC 190 ms
94,884 KB
testcase_28 AC 146 ms
88,380 KB
testcase_29 AC 190 ms
94,592 KB
testcase_30 AC 148 ms
88,576 KB
testcase_31 AC 135 ms
85,852 KB
testcase_32 AC 160 ms
90,304 KB
testcase_33 AC 228 ms
100,036 KB
testcase_34 AC 220 ms
97,980 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 162 ms
93,584 KB
testcase_38 AC 244 ms
103,296 KB
testcase_39 AC 241 ms
103,432 KB
testcase_40 AC 245 ms
103,168 KB
testcase_41 AC 242 ms
103,424 KB
testcase_42 AC 249 ms
103,168 KB
testcase_43 AC 152 ms
101,896 KB
testcase_44 AC 138 ms
97,984 KB
testcase_45 AC 126 ms
93,108 KB
testcase_46 AC 73 ms
86,272 KB
testcase_47 AC 45 ms
53,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

import sys

input = sys.stdin.readline

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

res = []
deq = deque([v for v in range(N+1) if deg[v]==0])
while deq:
    v = deq.popleft()
    res.append(v)
    for nv,l,a in edge[v]:
        deg[nv] -= 1
        if not deg[nv]:
            deq.append(nv)

if 0 not in res or N not in res:
    exit(print("INF"))

dp = [0 for i in range(N+1)]
dp[N] = 0
way = [0 for i in range(N+1)]
way[N] = 1
mod = 10**9+7

for v in res[::-1]:
    if v==N:
        continue
    for nv,l,a in edge[v]:
        if way[nv]:
            dp[v] += dp[nv] * a + l * a * way[nv]
            dp[v] %= mod
            way[v] += way[nv] * a
            way[v] %= mod

print(dp[0])
0