結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,608 KB
testcase_01 AC 34 ms
52,480 KB
testcase_02 AC 35 ms
51,968 KB
testcase_03 AC 37 ms
52,352 KB
testcase_04 AC 37 ms
53,248 KB
testcase_05 AC 37 ms
52,864 KB
testcase_06 AC 36 ms
52,608 KB
testcase_07 AC 36 ms
52,608 KB
testcase_08 AC 84 ms
78,080 KB
testcase_09 AC 89 ms
77,568 KB
testcase_10 AC 96 ms
77,440 KB
testcase_11 AC 100 ms
78,336 KB
testcase_12 AC 97 ms
78,208 KB
testcase_13 AC 222 ms
107,752 KB
testcase_14 AC 332 ms
117,368 KB
testcase_15 AC 297 ms
115,044 KB
testcase_16 AC 240 ms
103,772 KB
testcase_17 AC 139 ms
93,628 KB
testcase_18 AC 315 ms
121,916 KB
testcase_19 AC 315 ms
121,664 KB
testcase_20 AC 313 ms
122,172 KB
testcase_21 AC 313 ms
121,680 KB
testcase_22 AC 314 ms
121,928 KB
testcase_23 AC 125 ms
86,016 KB
testcase_24 AC 126 ms
85,760 KB
testcase_25 AC 243 ms
100,448 KB
testcase_26 AC 316 ms
110,996 KB
testcase_27 AC 268 ms
104,432 KB
testcase_28 AC 210 ms
93,472 KB
testcase_29 AC 279 ms
104,568 KB
testcase_30 AC 262 ms
92,588 KB
testcase_31 AC 152 ms
90,368 KB
testcase_32 AC 219 ms
99,352 KB
testcase_33 AC 311 ms
110,392 KB
testcase_34 AC 301 ms
108,964 KB
testcase_35 AC 262 ms
109,904 KB
testcase_36 AC 251 ms
109,136 KB
testcase_37 AC 209 ms
99,528 KB
testcase_38 AC 261 ms
115,676 KB
testcase_39 AC 266 ms
115,416 KB
testcase_40 AC 271 ms
115,272 KB
testcase_41 AC 266 ms
115,792 KB
testcase_42 AC 272 ms
115,140 KB
testcase_43 AC 221 ms
100,464 KB
testcase_44 AC 219 ms
110,496 KB
testcase_45 AC 169 ms
99,812 KB
testcase_46 AC 42 ms
61,312 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)

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