結果

問題 No.1364 [Renaming] Road to Cherry from Zelkova
ユーザー convexineqconvexineq
提出日時 2021-01-23 12:57:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 568 ms / 2,500 ms
コード長 1,022 bytes
コンパイル時間 345 ms
コンパイル使用メモリ 82,072 KB
実行使用メモリ 134,740 KB
最終ジャッジ日時 2024-06-09 17:50:08
合計ジャッジ時間 17,454 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,608 KB
testcase_01 AC 38 ms
52,224 KB
testcase_02 AC 38 ms
52,224 KB
testcase_03 AC 40 ms
52,608 KB
testcase_04 AC 41 ms
53,248 KB
testcase_05 AC 43 ms
52,480 KB
testcase_06 AC 40 ms
52,736 KB
testcase_07 AC 41 ms
53,120 KB
testcase_08 AC 115 ms
78,300 KB
testcase_09 AC 103 ms
77,824 KB
testcase_10 AC 120 ms
77,696 KB
testcase_11 AC 112 ms
78,128 KB
testcase_12 AC 131 ms
78,308 KB
testcase_13 AC 390 ms
116,244 KB
testcase_14 AC 516 ms
124,464 KB
testcase_15 AC 495 ms
124,080 KB
testcase_16 AC 393 ms
110,056 KB
testcase_17 AC 238 ms
100,264 KB
testcase_18 AC 558 ms
133,592 KB
testcase_19 AC 552 ms
134,300 KB
testcase_20 AC 558 ms
134,740 KB
testcase_21 AC 568 ms
133,688 KB
testcase_22 AC 560 ms
134,324 KB
testcase_23 AC 203 ms
91,648 KB
testcase_24 AC 149 ms
86,668 KB
testcase_25 AC 389 ms
104,364 KB
testcase_26 AC 557 ms
121,176 KB
testcase_27 AC 422 ms
110,656 KB
testcase_28 AC 310 ms
97,628 KB
testcase_29 AC 390 ms
109,900 KB
testcase_30 AC 322 ms
98,148 KB
testcase_31 AC 245 ms
94,208 KB
testcase_32 AC 310 ms
101,848 KB
testcase_33 AC 544 ms
118,400 KB
testcase_34 AC 538 ms
117,224 KB
testcase_35 AC 473 ms
121,956 KB
testcase_36 AC 430 ms
121,276 KB
testcase_37 AC 270 ms
107,228 KB
testcase_38 AC 349 ms
127,044 KB
testcase_39 AC 346 ms
126,792 KB
testcase_40 AC 351 ms
127,516 KB
testcase_41 AC 348 ms
127,068 KB
testcase_42 AC 347 ms
127,060 KB
testcase_43 AC 247 ms
113,588 KB
testcase_44 AC 235 ms
116,412 KB
testcase_45 AC 234 ms
113,072 KB
testcase_46 AC 56 ms
70,940 KB
testcase_47 AC 41 ms
52,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())
n += 1
g = [[] for _ in range(n)]
rg = [[] 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))
    rg[v].append(u)

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)
ok2 = [0]*n
ok2[n-1] = 1
q = [n-1]
while q:
    u = q.pop()
    for v in rg[u]:
        if ok2[v]==0:
            ok2[v] = 1
            q.append(v)

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

MOD = 10**9+7
q = [i for i in range(n) if ok[i] and ok2[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 any(vi>0 for vi in ind):
    print("INF")
else:
    print(dpval[-1])
0