結果

問題 No.2712 Play more!
ユーザー 👑 rin204rin204
提出日時 2024-04-07 14:38:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,362 ms / 2,000 ms
コード長 1,486 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 78,156 KB
最終ジャッジ日時 2024-10-01 04:30:21
合計ジャッジ時間 13,022 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,488 KB
testcase_01 AC 36 ms
52,424 KB
testcase_02 AC 36 ms
52,684 KB
testcase_03 AC 37 ms
53,084 KB
testcase_04 AC 36 ms
53,324 KB
testcase_05 AC 40 ms
52,632 KB
testcase_06 AC 37 ms
53,196 KB
testcase_07 AC 611 ms
77,728 KB
testcase_08 AC 583 ms
78,156 KB
testcase_09 AC 685 ms
77,596 KB
testcase_10 AC 38 ms
52,948 KB
testcase_11 AC 374 ms
76,880 KB
testcase_12 AC 1,130 ms
77,640 KB
testcase_13 AC 268 ms
76,820 KB
testcase_14 AC 877 ms
77,164 KB
testcase_15 AC 1,362 ms
77,788 KB
testcase_16 AC 192 ms
76,760 KB
testcase_17 AC 102 ms
76,980 KB
testcase_18 AC 259 ms
76,804 KB
testcase_19 AC 142 ms
76,884 KB
testcase_20 AC 429 ms
77,016 KB
testcase_21 AC 284 ms
77,304 KB
testcase_22 AC 1,181 ms
77,412 KB
testcase_23 AC 127 ms
76,752 KB
testcase_24 AC 258 ms
76,988 KB
testcase_25 AC 99 ms
76,968 KB
testcase_26 AC 294 ms
76,728 KB
testcase_27 AC 279 ms
77,464 KB
testcase_28 AC 79 ms
67,372 KB
testcase_29 AC 259 ms
76,972 KB
testcase_30 AC 1,271 ms
77,724 KB
testcase_31 AC 81 ms
77,044 KB
testcase_32 AC 81 ms
77,396 KB
testcase_33 AC 46 ms
61,248 KB
testcase_34 AC 38 ms
52,756 KB
testcase_35 AC 39 ms
53,672 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

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

    st = []
    used = [False] * n
    for i in range(n):
        if bd[i] != dist[i]:
            dist[i] = None
            st.append(i)
            used[i] = True
    E = [[] for _ in range(n)]
    for u, v, d in edges:
        E[u].append(v)

    while st:
        v = st.pop()
        for u in E[v]:
            if not used[u]:
                used[u] = True
                st.append(u)
                dist[u] = None

    return dist


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)[-1]
if ans is None:
    print("inf")
else:
    print(-ans)
0