結果

問題 No.2712 Play more!
ユーザー 👑 rin204rin204
提出日時 2024-04-07 14:35:42
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,068 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 82,032 KB
実行使用メモリ 77,840 KB
最終ジャッジ日時 2024-10-01 04:30:06
合計ジャッジ時間 12,062 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,444 KB
testcase_01 AC 38 ms
52,824 KB
testcase_02 AC 37 ms
52,708 KB
testcase_03 AC 39 ms
53,424 KB
testcase_04 AC 35 ms
52,740 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 635 ms
77,548 KB
testcase_10 AC 37 ms
53,356 KB
testcase_11 AC 347 ms
74,856 KB
testcase_12 AC 1,057 ms
77,668 KB
testcase_13 AC 272 ms
75,156 KB
testcase_14 AC 782 ms
77,056 KB
testcase_15 AC 1,174 ms
77,372 KB
testcase_16 AC 165 ms
74,500 KB
testcase_17 AC 93 ms
74,412 KB
testcase_18 AC 230 ms
74,784 KB
testcase_19 AC 131 ms
74,748 KB
testcase_20 AC 433 ms
76,656 KB
testcase_21 AC 268 ms
76,816 KB
testcase_22 AC 1,060 ms
77,112 KB
testcase_23 AC 125 ms
76,808 KB
testcase_24 AC 229 ms
74,040 KB
testcase_25 AC 87 ms
74,656 KB
testcase_26 AC 244 ms
75,240 KB
testcase_27 AC 235 ms
77,280 KB
testcase_28 AC 76 ms
66,964 KB
testcase_29 AC 221 ms
74,568 KB
testcase_30 AC 1,143 ms
77,448 KB
testcase_31 AC 80 ms
77,308 KB
testcase_32 AC 81 ms
77,232 KB
testcase_33 AC 47 ms
61,120 KB
testcase_34 AC 38 ms
53,420 KB
testcase_35 AC 37 ms
52,868 KB
権限があれば一括ダウンロードができます

ソースコード

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]

    bd = dist[-1]
    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]

    if bd != dist[-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