結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
53,888 KB
testcase_01 AC 44 ms
53,888 KB
testcase_02 AC 48 ms
53,760 KB
testcase_03 AC 47 ms
53,888 KB
testcase_04 AC 45 ms
54,016 KB
testcase_05 AC 48 ms
53,760 KB
testcase_06 AC 47 ms
54,016 KB
testcase_07 AC 46 ms
54,144 KB
testcase_08 AC 94 ms
79,232 KB
testcase_09 AC 72 ms
71,424 KB
testcase_10 AC 91 ms
78,456 KB
testcase_11 AC 98 ms
78,780 KB
testcase_12 AC 96 ms
78,464 KB
testcase_13 AC 316 ms
105,728 KB
testcase_14 AC 374 ms
108,032 KB
testcase_15 AC 394 ms
110,592 KB
testcase_16 AC 292 ms
98,816 KB
testcase_17 AC 195 ms
96,128 KB
testcase_18 AC 537 ms
120,632 KB
testcase_19 AC 520 ms
120,756 KB
testcase_20 AC 526 ms
120,872 KB
testcase_21 AC 521 ms
120,960 KB
testcase_22 AC 526 ms
120,916 KB
testcase_23 AC 133 ms
86,656 KB
testcase_24 AC 100 ms
81,344 KB
testcase_25 AC 180 ms
92,672 KB
testcase_26 AC 248 ms
100,864 KB
testcase_27 AC 204 ms
94,720 KB
testcase_28 AC 153 ms
88,192 KB
testcase_29 AC 199 ms
94,976 KB
testcase_30 AC 154 ms
88,260 KB
testcase_31 AC 141 ms
85,888 KB
testcase_32 AC 164 ms
90,112 KB
testcase_33 AC 243 ms
100,224 KB
testcase_34 AC 237 ms
98,440 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 173 ms
93,824 KB
testcase_38 AC 257 ms
103,308 KB
testcase_39 AC 249 ms
103,680 KB
testcase_40 AC 258 ms
103,296 KB
testcase_41 AC 262 ms
103,424 KB
testcase_42 AC 245 ms
103,424 KB
testcase_43 AC 156 ms
102,016 KB
testcase_44 AC 147 ms
98,420 KB
testcase_45 AC 132 ms
92,544 KB
testcase_46 WA -
testcase_47 AC 46 ms
53,632 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 = [-1 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 dp[nv]!=-1:
            if dp[v]==-1:
                dp[v] = 0
            dp[v] += dp[nv] * a + l * a * way[nv]
            dp[v] %= mod
            way[v] += way[nv] * a
            way[v] %= mod

print(dp[0])
0