結果

問題 No.2712 Play more!
ユーザー pitPpitP
提出日時 2024-03-31 15:09:42
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 953 bytes
コンパイル時間 370 ms
コンパイル使用メモリ 82,652 KB
実行使用メモリ 78,664 KB
最終ジャッジ日時 2024-09-30 20:20:38
合計ジャッジ時間 12,647 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,504 KB
testcase_01 AC 42 ms
54,868 KB
testcase_02 AC 39 ms
54,936 KB
testcase_03 AC 40 ms
54,924 KB
testcase_04 WA -
testcase_05 AC 44 ms
60,048 KB
testcase_06 AC 44 ms
54,060 KB
testcase_07 AC 759 ms
77,684 KB
testcase_08 AC 1,003 ms
77,820 KB
testcase_09 AC 786 ms
77,992 KB
testcase_10 WA -
testcase_11 AC 364 ms
77,464 KB
testcase_12 AC 887 ms
77,988 KB
testcase_13 AC 316 ms
77,404 KB
testcase_14 AC 640 ms
77,864 KB
testcase_15 AC 1,425 ms
78,664 KB
testcase_16 AC 164 ms
77,552 KB
testcase_17 AC 99 ms
76,936 KB
testcase_18 AC 205 ms
77,528 KB
testcase_19 AC 144 ms
77,088 KB
testcase_20 AC 405 ms
77,608 KB
testcase_21 AC 206 ms
77,776 KB
testcase_22 AC 872 ms
78,000 KB
testcase_23 AC 117 ms
77,336 KB
testcase_24 AC 248 ms
77,684 KB
testcase_25 AC 99 ms
77,416 KB
testcase_26 AC 267 ms
77,688 KB
testcase_27 AC 439 ms
77,676 KB
testcase_28 AC 132 ms
77,540 KB
testcase_29 AC 216 ms
77,688 KB
testcase_30 AC 878 ms
78,148 KB
testcase_31 AC 95 ms
77,800 KB
testcase_32 AC 95 ms
78,040 KB
testcase_33 AC 53 ms
65,744 KB
testcase_34 AC 41 ms
55,312 KB
testcase_35 AC 40 ms
54,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import namedtuple

Edge = namedtuple("Edge", ["from_", "to", "cost"])

def bellman_ford(st, dist, edges):
    N = len(dist)
    for i in range(N):
        dist[i] = -float('inf')
    dist[st] = 0
    for _ in range(N):
        update = False
        for e in edges:
            if dist[e.to] < dist[e.from_] + e.cost:
                dist[e.to] = dist[e.from_] + e.cost
                update = True
        if not update:
            return True
    return False

if __name__ == "__main__":
    N, M = map(int, input().split())
    A = list(map(int, input().split()))

    edges = []
    for _ in range(M):
        a, b, c = map(int, input().split())
        a -= 1
        b -= 1
        edges.append(Edge(a + N, b, -c))
    for i in range(N):
        edges.append(Edge(i, i + N, A[i]))

    dist = [-float('inf')] * (2 * N)
    f = bellman_ford(0, dist, edges)
    if f:
        print(dist[2 * N - 1])
    else:
        print("inf")
0