結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,888 KB
testcase_01 AC 41 ms
54,016 KB
testcase_02 AC 42 ms
53,760 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 124 ms
82,916 KB
testcase_24 AC 139 ms
83,072 KB
testcase_25 AC 216 ms
90,860 KB
testcase_26 AC 315 ms
99,348 KB
testcase_27 AC 277 ms
95,588 KB
testcase_28 AC 177 ms
87,552 KB
testcase_29 AC 262 ms
95,372 KB
testcase_30 AC 188 ms
87,296 KB
testcase_31 AC 143 ms
85,760 KB
testcase_32 AC 229 ms
92,524 KB
testcase_33 AC 326 ms
99,200 KB
testcase_34 AC 298 ms
97,924 KB
testcase_35 AC 281 ms
100,300 KB
testcase_36 AC 295 ms
99,336 KB
testcase_37 AC 222 ms
91,976 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 AC 256 ms
120,960 KB
testcase_44 AC 253 ms
128,220 KB
testcase_45 AC 242 ms
121,252 KB
testcase_46 AC 49 ms
70,912 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