結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,096 KB
testcase_01 WA -
testcase_02 AC 36 ms
52,224 KB
testcase_03 AC 37 ms
52,352 KB
testcase_04 AC 38 ms
52,736 KB
testcase_05 AC 36 ms
52,608 KB
testcase_06 AC 37 ms
52,480 KB
testcase_07 AC 38 ms
52,736 KB
testcase_08 AC 81 ms
78,336 KB
testcase_09 AC 91 ms
78,120 KB
testcase_10 AC 87 ms
77,440 KB
testcase_11 AC 81 ms
77,968 KB
testcase_12 AC 100 ms
77,696 KB
testcase_13 AC 255 ms
107,628 KB
testcase_14 AC 374 ms
117,232 KB
testcase_15 AC 330 ms
115,156 KB
testcase_16 AC 273 ms
103,512 KB
testcase_17 AC 144 ms
93,492 KB
testcase_18 AC 355 ms
121,784 KB
testcase_19 AC 353 ms
121,776 KB
testcase_20 AC 346 ms
121,536 KB
testcase_21 AC 353 ms
121,664 KB
testcase_22 AC 354 ms
121,664 KB
testcase_23 WA -
testcase_24 AC 134 ms
85,672 KB
testcase_25 AC 289 ms
100,592 KB
testcase_26 AC 417 ms
110,940 KB
testcase_27 AC 321 ms
104,696 KB
testcase_28 AC 213 ms
93,088 KB
testcase_29 AC 302 ms
104,588 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 249 ms
99,472 KB
testcase_33 AC 400 ms
110,384 KB
testcase_34 AC 392 ms
108,832 KB
testcase_35 AC 313 ms
109,772 KB
testcase_36 AC 309 ms
109,256 KB
testcase_37 AC 221 ms
99,268 KB
testcase_38 AC 295 ms
115,424 KB
testcase_39 AC 300 ms
115,532 KB
testcase_40 AC 302 ms
115,280 KB
testcase_41 AC 302 ms
115,392 KB
testcase_42 AC 302 ms
115,252 KB
testcase_43 AC 191 ms
100,324 KB
testcase_44 AC 189 ms
110,232 KB
testcase_45 WA -
testcase_46 AC 42 ms
61,184 KB
testcase_47 AC 35 ms
52,480 KB
権限があれば一括ダウンロードができます

ソースコード

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)

if ok[-1]==0:
    print(0)
    exit()

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 dpnum[v]==0:
    print("INF")
else:
    print(dpval[-1])
0