結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,960 KB
testcase_01 AC 35 ms
52,952 KB
testcase_02 AC 35 ms
54,040 KB
testcase_03 AC 40 ms
52,468 KB
testcase_04 WA -
testcase_05 AC 35 ms
54,308 KB
testcase_06 AC 35 ms
53,044 KB
testcase_07 AC 179 ms
73,816 KB
testcase_08 AC 187 ms
76,828 KB
testcase_09 AC 177 ms
74,188 KB
testcase_10 WA -
testcase_11 AC 114 ms
73,576 KB
testcase_12 AC 155 ms
74,240 KB
testcase_13 AC 102 ms
74,220 KB
testcase_14 AC 121 ms
74,220 KB
testcase_15 AC 203 ms
76,836 KB
testcase_16 AC 91 ms
73,924 KB
testcase_17 AC 69 ms
72,812 KB
testcase_18 AC 79 ms
72,108 KB
testcase_19 AC 72 ms
71,840 KB
testcase_20 AC 130 ms
74,372 KB
testcase_21 AC 100 ms
77,416 KB
testcase_22 AC 152 ms
74,564 KB
testcase_23 AC 84 ms
76,612 KB
testcase_24 AC 90 ms
73,404 KB
testcase_25 AC 70 ms
74,132 KB
testcase_26 AC 84 ms
72,508 KB
testcase_27 AC 117 ms
73,564 KB
testcase_28 AC 58 ms
65,656 KB
testcase_29 AC 90 ms
73,204 KB
testcase_30 AC 175 ms
74,224 KB
testcase_31 AC 67 ms
74,944 KB
testcase_32 AC 64 ms
73,808 KB
testcase_33 AC 41 ms
56,164 KB
testcase_34 AC 36 ms
52,588 KB
testcase_35 AC 36 ms
54,124 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[a]))

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[N - 1] - d[N - 1])
0