結果

問題 No.2712 Play more!
ユーザー hiro1729hiro1729
提出日時 2024-03-31 14:17:40
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 466 bytes
コンパイル時間 349 ms
コンパイル使用メモリ 82,284 KB
実行使用メモリ 77,672 KB
最終ジャッジ日時 2024-09-30 19:18:59
合計ジャッジ時間 4,867 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,500 KB
testcase_01 AC 39 ms
53,076 KB
testcase_02 AC 39 ms
52,876 KB
testcase_03 AC 40 ms
52,460 KB
testcase_04 WA -
testcase_05 AC 39 ms
53,012 KB
testcase_06 AC 39 ms
52,952 KB
testcase_07 AC 180 ms
74,228 KB
testcase_08 AC 196 ms
77,672 KB
testcase_09 AC 162 ms
74,192 KB
testcase_10 WA -
testcase_11 AC 112 ms
73,728 KB
testcase_12 AC 132 ms
74,136 KB
testcase_13 AC 105 ms
73,952 KB
testcase_14 AC 122 ms
74,312 KB
testcase_15 AC 201 ms
77,236 KB
testcase_16 AC 94 ms
74,632 KB
testcase_17 AC 74 ms
74,728 KB
testcase_18 AC 84 ms
72,496 KB
testcase_19 AC 76 ms
73,416 KB
testcase_20 AC 132 ms
74,032 KB
testcase_21 AC 108 ms
77,268 KB
testcase_22 AC 150 ms
74,392 KB
testcase_23 AC 91 ms
77,092 KB
testcase_24 AC 92 ms
73,072 KB
testcase_25 AC 75 ms
74,452 KB
testcase_26 AC 87 ms
73,232 KB
testcase_27 AC 120 ms
72,756 KB
testcase_28 AC 60 ms
66,220 KB
testcase_29 AC 94 ms
74,264 KB
testcase_30 AC 182 ms
74,020 KB
testcase_31 AC 71 ms
74,924 KB
testcase_32 AC 70 ms
74,596 KB
testcase_33 AC 44 ms
55,432 KB
testcase_34 AC 38 ms
53,140 KB
testcase_35 AC 37 ms
53,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import *
N, M = map(int, input().split())
A = list(map(int, input().split()))
g = []
for _ in range(M):
	a, b, c = map(int, input().split())
	a -= 1
	b -= 1
	g.append((a, b, c - A[b]))

d = [10 ** 18]*N
d[0] = 0
for i in range(N):
    update = False
    for x, y, z in g:
        if d[y] > d[x] + z:
            d[y] = d[x] + z
            update = True
    if not update:
        break
    if i == N - 1:
        exit(print("inf"))
print(A[0] - d[N - 1])
0