結果

問題 No.1364 [Renaming] Road to Cherry from Zelkova
ユーザー tktk_snsntktk_snsn
提出日時 2021-01-22 22:09:54
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 860 bytes
コンパイル時間 261 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 147,968 KB
最終ジャッジ日時 2024-06-08 15:10:18
合計ジャッジ時間 14,642 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,224 KB
testcase_01 AC 38 ms
51,840 KB
testcase_02 AC 38 ms
51,712 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 149 ms
93,568 KB
testcase_24 AC 107 ms
88,064 KB
testcase_25 AC 227 ms
108,160 KB
testcase_26 AC 310 ms
121,344 KB
testcase_27 AC 239 ms
110,976 KB
testcase_28 AC 178 ms
99,072 KB
testcase_29 AC 231 ms
111,104 KB
testcase_30 AC 179 ms
99,072 KB
testcase_31 AC 149 ms
92,672 KB
testcase_32 AC 180 ms
98,688 KB
testcase_33 AC 293 ms
121,856 KB
testcase_34 AC 295 ms
118,400 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 182 ms
106,240 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 AC 166 ms
118,656 KB
testcase_44 AC 170 ms
121,856 KB
testcase_45 AC 145 ms
110,848 KB
testcase_46 AC 69 ms
84,352 KB
testcase_47 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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()


cnt = [0] * (N + 1)
cnt[N] = 1
for s in topo[::-1]:
    for t, _, num in back[s]:
        cnt[t] += num * cnt[s]
        cnt[t] %= mod

ans = 0
for s in topo:
    for t, d, num in go[s]:
        ans += d * num * cnt[t]
        ans %= mod
print(ans)
0