結果

問題 No.2712 Play more!
ユーザー 👑 rin204rin204
提出日時 2024-04-07 14:33:26
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 940 bytes
コンパイル時間 236 ms
コンパイル使用メモリ 82,280 KB
実行使用メモリ 77,664 KB
最終ジャッジ日時 2024-10-01 04:29:53
合計ジャッジ時間 9,037 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,960 KB
testcase_01 AC 37 ms
52,836 KB
testcase_02 AC 37 ms
53,072 KB
testcase_03 WA -
testcase_04 AC 38 ms
53,564 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 511 ms
74,408 KB
testcase_10 AC 38 ms
54,064 KB
testcase_11 AC 246 ms
72,932 KB
testcase_12 WA -
testcase_13 AC 187 ms
72,620 KB
testcase_14 WA -
testcase_15 AC 811 ms
77,468 KB
testcase_16 AC 143 ms
73,888 KB
testcase_17 AC 82 ms
72,388 KB
testcase_18 AC 151 ms
72,684 KB
testcase_19 AC 102 ms
72,312 KB
testcase_20 AC 264 ms
74,640 KB
testcase_21 AC 205 ms
73,876 KB
testcase_22 AC 714 ms
77,344 KB
testcase_23 AC 107 ms
74,012 KB
testcase_24 AC 162 ms
71,892 KB
testcase_25 AC 81 ms
73,492 KB
testcase_26 AC 188 ms
72,812 KB
testcase_27 WA -
testcase_28 AC 77 ms
66,504 KB
testcase_29 AC 163 ms
72,304 KB
testcase_30 AC 693 ms
77,348 KB
testcase_31 AC 81 ms
77,328 KB
testcase_32 AC 84 ms
77,052 KB
testcase_33 AC 46 ms
59,516 KB
testcase_34 AC 37 ms
53,212 KB
testcase_35 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

def bellmanFord(n, edges, s, inf=1 << 60):
    """
    edges = [(from1, to1, cost1), (from2, to2, cost2), ...)]
    """
    dist = [inf] * n
    dist[s] = 0

    for _ in range(n):
        update = False
        for u, v, d in edges:
            if dist[u] != inf and dist[v] > dist[u] + d:
                dist[v] = dist[u] + d
                update = True

        if not update:
            return -dist[-1]

    update = False
    for u, v, d in edges:
        if dist[u] != inf and dist[v] > dist[u] + d:
            dist[v] = dist[u] + d
            if v == n - 1:
                return "inf"

    return -dist[-1]


n, m = map(int, input().split())
A = list(map(int, input().split()))
edges = []
for i, a in enumerate(A):
    edges.append((2 * i, 2 * i + 1, -a))
for _ in range(m):
    a, b, c = map(int, input().split())
    a -= 1
    b -= 1
    edges.append((2 * a + 1, 2 * b, c))

ans = bellmanFord(2 * n, edges, 0)
print(ans)
0