結果

問題 No.2712 Play more!
ユーザー yansi819yansi819
提出日時 2024-05-31 10:53:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 801 ms / 2,000 ms
コード長 739 bytes
コンパイル時間 419 ms
コンパイル使用メモリ 82,160 KB
実行使用メモリ 77,188 KB
最終ジャッジ日時 2024-05-31 10:54:03
合計ジャッジ時間 9,608 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
54,040 KB
testcase_01 AC 40 ms
52,144 KB
testcase_02 AC 39 ms
52,256 KB
testcase_03 AC 40 ms
53,344 KB
testcase_04 AC 39 ms
52,356 KB
testcase_05 AC 40 ms
54,336 KB
testcase_06 AC 40 ms
52,392 KB
testcase_07 AC 328 ms
76,860 KB
testcase_08 AC 346 ms
77,140 KB
testcase_09 AC 308 ms
77,188 KB
testcase_10 AC 39 ms
52,492 KB
testcase_11 AC 227 ms
76,856 KB
testcase_12 AC 356 ms
76,980 KB
testcase_13 AC 206 ms
77,060 KB
testcase_14 AC 254 ms
76,832 KB
testcase_15 AC 664 ms
77,128 KB
testcase_16 AC 168 ms
76,632 KB
testcase_17 AC 92 ms
73,608 KB
testcase_18 AC 136 ms
76,392 KB
testcase_19 AC 114 ms
76,812 KB
testcase_20 AC 239 ms
76,848 KB
testcase_21 AC 209 ms
77,104 KB
testcase_22 AC 415 ms
77,184 KB
testcase_23 AC 120 ms
77,080 KB
testcase_24 AC 178 ms
76,920 KB
testcase_25 AC 95 ms
74,092 KB
testcase_26 AC 156 ms
76,720 KB
testcase_27 AC 206 ms
76,620 KB
testcase_28 AC 142 ms
75,780 KB
testcase_29 AC 163 ms
76,656 KB
testcase_30 AC 374 ms
77,136 KB
testcase_31 AC 801 ms
76,952 KB
testcase_32 AC 503 ms
76,828 KB
testcase_33 AC 50 ms
61,764 KB
testcase_34 AC 38 ms
52,144 KB
testcase_35 AC 40 ms
52,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
A = list(map(int, input().split()))
E = []
for _ in range(M):
    a, b, c = map(int, input().split())
    E.append((a - 1, b - 1, A[b - 1] - c))
INF = 1 << 63
cost = [-INF] * N
cost[0] = A[0]
for _ in range(N - 1):
    for frm, to, t in E:
        if cost[frm] == -INF: continue
        if cost[to] < cost[frm] + t:
            cost[to] = cost[frm] + t
update = [False] * N
for _ in range(N):
    for frm, to, t in E:
        if cost[frm] == -INF: continue
        if cost[to] < cost[frm] + t:
            update[to] = True
        if update[frm]:
            update[to] = True
for i in range(N):
    if update[i]:
        cost[i] = INF
if cost[N - 1] == INF:
    print("inf")
else:
    print(cost[N - 1])
0