結果

問題 No.2712 Play more!
ユーザー porkleoiporkleoi
提出日時 2024-03-31 14:42:58
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 793 bytes
コンパイル時間 267 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 77,964 KB
最終ジャッジ日時 2024-09-30 19:51:19
合計ジャッジ時間 7,718 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
54,156 KB
testcase_01 AC 36 ms
53,312 KB
testcase_02 AC 38 ms
53,264 KB
testcase_03 AC 37 ms
53,188 KB
testcase_04 WA -
testcase_05 AC 37 ms
53,620 KB
testcase_06 AC 35 ms
52,880 KB
testcase_07 AC 398 ms
77,176 KB
testcase_08 AC 398 ms
76,752 KB
testcase_09 AC 405 ms
76,836 KB
testcase_10 WA -
testcase_11 AC 234 ms
76,812 KB
testcase_12 AC 389 ms
77,196 KB
testcase_13 AC 212 ms
77,144 KB
testcase_14 AC 338 ms
77,200 KB
testcase_15 AC 731 ms
77,964 KB
testcase_16 AC 153 ms
76,648 KB
testcase_17 AC 90 ms
76,944 KB
testcase_18 AC 134 ms
77,036 KB
testcase_19 AC 111 ms
76,644 KB
testcase_20 AC 270 ms
76,776 KB
testcase_21 AC 187 ms
77,364 KB
testcase_22 AC 429 ms
77,108 KB
testcase_23 AC 106 ms
77,028 KB
testcase_24 AC 180 ms
76,628 KB
testcase_25 AC 89 ms
76,652 KB
testcase_26 AC 156 ms
76,676 KB
testcase_27 AC 211 ms
77,000 KB
testcase_28 AC 81 ms
76,188 KB
testcase_29 AC 171 ms
76,784 KB
testcase_30 AC 417 ms
77,296 KB
testcase_31 AC 77 ms
77,420 KB
testcase_32 AC 71 ms
74,988 KB
testcase_33 AC 44 ms
55,340 KB
testcase_34 AC 37 ms
53,384 KB
testcase_35 AC 37 ms
53,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq

def main():
    # アルゴリズム一覧を見る
    # 嘘解法ですか
    n, m = map(int, input().split())
    vec = list(map(int, input().split()))
    lst = []
    for _ in range(m):
        a, b, c = map(int, input().split())
        a -= 1
        b -= 1
        lst.append((a, b, c - vec[a]))
    lst.append((n - 1, n, -vec[n - 1]))
    dist = [float('inf')] * (n + 1)
    dist[0] = 0
    cnt = 0
    while cnt < n + 10:
        end = True
        for a, b, c in lst:
            if dist[a] != float('inf') and dist[a] + c < dist[b]:
                dist[b] = dist[a] + c
                end = False
        if end:
            break
        cnt += 1
    if cnt == n + 10:
        print("inf")
    else:
        print(-dist[n])

if __name__ == "__main__":
    main()
0