結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 37 ms
51,712 KB
testcase_02 AC 38 ms
52,096 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,312 KB
testcase_24 AC 112 ms
88,064 KB
testcase_25 AC 223 ms
107,776 KB
testcase_26 AC 312 ms
121,344 KB
testcase_27 AC 248 ms
110,976 KB
testcase_28 AC 175 ms
98,816 KB
testcase_29 AC 233 ms
110,720 KB
testcase_30 AC 181 ms
98,944 KB
testcase_31 AC 154 ms
92,544 KB
testcase_32 AC 180 ms
98,816 KB
testcase_33 AC 302 ms
122,112 KB
testcase_34 AC 298 ms
118,656 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 186 ms
106,240 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 AC 175 ms
119,040 KB
testcase_44 AC 179 ms
121,216 KB
testcase_45 AC 148 ms
110,736 KB
testcase_46 AC 70 ms
83,968 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


if cnt[0] == 0:
    print(0)
    exit()


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