結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,632 KB
testcase_01 AC 42 ms
53,760 KB
testcase_02 AC 43 ms
53,504 KB
testcase_03 AC 41 ms
54,272 KB
testcase_04 AC 42 ms
54,144 KB
testcase_05 AC 43 ms
53,504 KB
testcase_06 AC 41 ms
53,888 KB
testcase_07 AC 42 ms
53,888 KB
testcase_08 AC 91 ms
78,848 KB
testcase_09 AC 69 ms
71,680 KB
testcase_10 AC 89 ms
78,592 KB
testcase_11 AC 91 ms
78,720 KB
testcase_12 AC 87 ms
78,592 KB
testcase_13 AC 298 ms
105,984 KB
testcase_14 AC 342 ms
108,288 KB
testcase_15 AC 362 ms
110,688 KB
testcase_16 AC 281 ms
98,992 KB
testcase_17 AC 176 ms
96,000 KB
testcase_18 AC 531 ms
120,704 KB
testcase_19 AC 499 ms
120,832 KB
testcase_20 AC 488 ms
120,704 KB
testcase_21 AC 478 ms
120,576 KB
testcase_22 AC 464 ms
120,576 KB
testcase_23 AC 126 ms
86,776 KB
testcase_24 AC 94 ms
81,152 KB
testcase_25 AC 169 ms
92,544 KB
testcase_26 AC 227 ms
100,824 KB
testcase_27 AC 187 ms
95,004 KB
testcase_28 AC 142 ms
88,424 KB
testcase_29 AC 179 ms
94,828 KB
testcase_30 AC 142 ms
88,192 KB
testcase_31 AC 128 ms
85,888 KB
testcase_32 AC 154 ms
90,168 KB
testcase_33 AC 220 ms
99,968 KB
testcase_34 AC 213 ms
98,164 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 153 ms
93,696 KB
testcase_38 AC 224 ms
103,484 KB
testcase_39 AC 226 ms
103,296 KB
testcase_40 AC 234 ms
103,296 KB
testcase_41 AC 233 ms
103,428 KB
testcase_42 AC 231 ms
103,920 KB
testcase_43 AC 148 ms
101,760 KB
testcase_44 AC 134 ms
98,232 KB
testcase_45 AC 122 ms
92,800 KB
testcase_46 WA -
testcase_47 AC 43 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 = [-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