結果

問題 No.1364 [Renaming] Road to Cherry from Zelkova
ユーザー chineristACchineristAC
提出日時 2021-01-22 22:06:33
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 816 bytes
コンパイル時間 445 ms
コンパイル使用メモリ 82,212 KB
実行使用メモリ 119,016 KB
最終ジャッジ日時 2024-12-28 01:05:08
合計ジャッジ時間 11,681 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,192 KB
testcase_01 AC 43 ms
54,216 KB
testcase_02 AC 44 ms
54,528 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 133 ms
86,760 KB
testcase_24 AC 98 ms
81,532 KB
testcase_25 AC 189 ms
92,844 KB
testcase_26 AC 251 ms
100,960 KB
testcase_27 AC 206 ms
94,780 KB
testcase_28 AC 153 ms
88,408 KB
testcase_29 AC 202 ms
94,560 KB
testcase_30 AC 148 ms
88,256 KB
testcase_31 AC 136 ms
85,844 KB
testcase_32 AC 163 ms
90,048 KB
testcase_33 AC 234 ms
100,216 KB
testcase_34 AC 234 ms
98,200 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 165 ms
93,836 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 AC 153 ms
101,248 KB
testcase_44 AC 141 ms
97,472 KB
testcase_45 AC 126 ms
93,072 KB
testcase_46 WA -
testcase_47 AC 43 ms
55,132 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
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] += a * (l+dp[nv])
            dp[v] %= mod

print(dp[0])
0