結果

問題 No.1364 [Renaming] Road to Cherry from Zelkova
ユーザー convexineqconvexineq
提出日時 2021-01-23 12:39:54
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 787 bytes
コンパイル時間 304 ms
コンパイル使用メモリ 82,512 KB
実行使用メモリ 122,052 KB
最終ジャッジ日時 2024-06-09 17:36:34
合計ジャッジ時間 12,160 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,728 KB
testcase_01 AC 33 ms
53,000 KB
testcase_02 AC 36 ms
52,384 KB
testcase_03 AC 37 ms
53,616 KB
testcase_04 AC 36 ms
53,568 KB
testcase_05 AC 37 ms
54,516 KB
testcase_06 AC 38 ms
53,048 KB
testcase_07 AC 40 ms
52,944 KB
testcase_08 AC 82 ms
78,344 KB
testcase_09 AC 86 ms
77,648 KB
testcase_10 AC 85 ms
77,480 KB
testcase_11 AC 79 ms
78,264 KB
testcase_12 AC 93 ms
77,828 KB
testcase_13 AC 225 ms
107,880 KB
testcase_14 AC 331 ms
117,364 KB
testcase_15 AC 294 ms
115,364 KB
testcase_16 AC 234 ms
103,520 KB
testcase_17 AC 134 ms
93,624 KB
testcase_18 AC 316 ms
122,052 KB
testcase_19 AC 314 ms
121,656 KB
testcase_20 AC 325 ms
121,920 KB
testcase_21 AC 318 ms
121,804 KB
testcase_22 AC 330 ms
121,796 KB
testcase_23 AC 119 ms
85,948 KB
testcase_24 AC 125 ms
85,872 KB
testcase_25 AC 239 ms
100,324 KB
testcase_26 AC 337 ms
110,936 KB
testcase_27 AC 276 ms
104,820 KB
testcase_28 AC 198 ms
93,092 KB
testcase_29 AC 269 ms
104,708 KB
testcase_30 AC 189 ms
92,892 KB
testcase_31 AC 149 ms
90,096 KB
testcase_32 AC 221 ms
99,608 KB
testcase_33 AC 334 ms
110,392 KB
testcase_34 AC 309 ms
109,216 KB
testcase_35 AC 288 ms
112,464 KB
testcase_36 AC 284 ms
111,180 KB
testcase_37 AC 209 ms
99,520 KB
testcase_38 AC 277 ms
115,804 KB
testcase_39 AC 291 ms
115,416 KB
testcase_40 AC 291 ms
115,524 KB
testcase_41 AC 283 ms
115,660 KB
testcase_42 AC 290 ms
115,260 KB
testcase_43 AC 182 ms
99,952 KB
testcase_44 AC 176 ms
110,624 KB
testcase_45 AC 172 ms
100,204 KB
testcase_46 AC 44 ms
64,548 KB
testcase_47 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())
n += 1
g = [[] for _ in range(n)]
edges = []
for _ in range(m):
    u,v,l,a = map(int,input().split())
    g[u].append((v,l,a))
    edges.append((u,v))

ok = [0]*n
ok[0] = 1
q = [0]
while q:
    u = q.pop()
    for v,l,a in g[u]:
        if ok[v]==0:
            ok[v] = 1
            q.append(v)


ind = [0]*n
for u,v in edges:
    if ok[u]:
        ind[v] += 1

MOD = 10**9+7
q = [i for i in range(n) if ok[i] and ind[i]==0]
dpnum = [0]*n
dpval = [0]*n
dpnum[0] = 1
while q:
    u = q.pop()
    for v,l,a in g[u]:
        dpnum[v] += a*dpnum[u]
        dpnum[v] %= MOD
        dpval[v] += (dpval[u] + dpnum[u]*l)%MOD*a
        dpval[v] %= MOD
        ind[v] -= 1
        if ind[v]==0: q.append(v)

if sum(ind):
    print("INF")
else:
    print(dpval[-1])
0