結果

問題 No.1364 [Renaming] Road to Cherry from Zelkova
ユーザー gorugo30gorugo30
提出日時 2021-01-22 22:31:43
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 615 bytes
コンパイル時間 267 ms
コンパイル使用メモリ 82,780 KB
実行使用メモリ 128,220 KB
最終ジャッジ日時 2024-12-28 03:06:47
合計ジャッジ時間 12,663 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
55,516 KB
testcase_01 AC 43 ms
53,784 KB
testcase_02 AC 42 ms
54,120 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 125 ms
82,832 KB
testcase_24 AC 145 ms
83,020 KB
testcase_25 AC 235 ms
90,800 KB
testcase_26 AC 328 ms
99,184 KB
testcase_27 AC 275 ms
95,236 KB
testcase_28 AC 185 ms
87,528 KB
testcase_29 AC 273 ms
95,276 KB
testcase_30 AC 177 ms
87,348 KB
testcase_31 AC 148 ms
85,776 KB
testcase_32 AC 223 ms
92,440 KB
testcase_33 AC 368 ms
99,096 KB
testcase_34 AC 313 ms
97,880 KB
testcase_35 AC 313 ms
100,256 KB
testcase_36 AC 316 ms
99,316 KB
testcase_37 AC 215 ms
92,124 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 AC 247 ms
121,028 KB
testcase_44 AC 252 ms
128,220 KB
testcase_45 AC 251 ms
120,744 KB
testcase_46 AC 52 ms
72,492 KB
testcase_47 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
MOD = 10 ** 9 + 7
to = [[] for i in range(N + 1)]
for i in range(M):
    u, v, l, a = map(int, input().split())
    to[u].append([v, l, a, len(to[u])])

used = set()
from collections import deque
qu = deque([0])
dp = [[0, 0] for i in range(N + 1)]
dp[0] = [1, 0]
while len(qu):
    v = qu.popleft()
    for nv, l, a, i in to[v]:
        if (v, nv, i) in used:
            print("INF")
            exit()
        dp[nv][0] = (dp[v][0] * a + dp[nv][0]) % MOD
        dp[nv][1] = ((dp[v][1] + l) * a + dp[nv][1]) % MOD
        used.add((v, nv, i))
        qu.append(nv)
print(dp[N][1])
0