結果

問題 No.1364 [Renaming] Road to Cherry from Zelkova
ユーザー tktk_snsntktk_snsn
提出日時 2021-01-22 21:57:43
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 973 bytes
コンパイル時間 403 ms
コンパイル使用メモリ 82,216 KB
実行使用メモリ 884,332 KB
最終ジャッジ日時 2024-12-28 00:17:34
合計ジャッジ時間 41,627 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
61,696 KB
testcase_01 MLE -
testcase_02 AC 40 ms
61,236 KB
testcase_03 MLE -
testcase_04 AC 56 ms
73,036 KB
testcase_05 MLE -
testcase_06 AC 41 ms
62,260 KB
testcase_07 MLE -
testcase_08 AC 117 ms
88,152 KB
testcase_09 MLE -
testcase_10 AC 263 ms
114,120 KB
testcase_11 AC 115 ms
80,072 KB
testcase_12 AC 377 ms
133,016 KB
testcase_13 AC 554 ms
149,840 KB
testcase_14 TLE -
testcase_15 AC 1,213 ms
256,976 KB
testcase_16 TLE -
testcase_17 AC 290 ms
117,488 KB
testcase_18 AC 928 ms
194,616 KB
testcase_19 AC 893 ms
192,028 KB
testcase_20 AC 911 ms
192,228 KB
testcase_21 AC 905 ms
194,772 KB
testcase_22 AC 895 ms
192,236 KB
testcase_23 AC 152 ms
93,284 KB
testcase_24 AC 106 ms
87,712 KB
testcase_25 AC 226 ms
107,232 KB
testcase_26 AC 317 ms
121,316 KB
testcase_27 AC 237 ms
111,088 KB
testcase_28 AC 183 ms
98,896 KB
testcase_29 AC 234 ms
110,632 KB
testcase_30 AC 186 ms
98,724 KB
testcase_31 AC 152 ms
92,528 KB
testcase_32 AC 194 ms
108,584 KB
testcase_33 AC 310 ms
121,648 KB
testcase_34 AC 307 ms
118,272 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 167 ms
106,172 KB
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 AC 201 ms
132,384 KB
testcase_44 AC 167 ms
115,772 KB
testcase_45 AC 139 ms
110,152 KB
testcase_46 AC 93 ms
101,468 KB
testcase_47 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
import sys
input = sys.stdin.buffer.readline
sys.setrecursionlimit(10 ** 7)
mod = 10**9+7

N, M = map(int, input().split())
deg = [0] * (N+1)
go = [[] for _ in range(N+1)]
back = [[] for _ in range(N+1)]
for _ in range(M):
    a, b, c, d = map(int, input().split())
    go[a].append((b, c, d))
    back[b].append((a, c, d))
    deg[b] += 1

topo = []
q = []
for i, d in enumerate(deg):
    if d == 0:
        q.append(i)
while q:
    s = q.pop()
    topo.append(s)
    for t, _, _ in go[s]:
        deg[t] -= 1
        if deg[t] == 0:
            q.append(t)

if len(topo) < N + 1:
    print("INF")
    exit()


dp = [defaultdict(int) for _ in range(N + 1)]
dp[N][0] += 1  # len, cnt
for s in topo[::-1][:-1]:
    for k, v in dp[s].items():
        for t, dist, num in back[s]:
            dp[t][k + dist] += v * num % mod
            dp[t][k + dist] %= mod

ans = 0
for k, v in dp[0].items():
    ans += k * v
    ans %= mod

print(ans)
0