結果

問題 No.2712 Play more!
ユーザー rlangevinrlangevin
提出日時 2024-04-01 22:24:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 570 ms / 2,000 ms
コード長 1,007 bytes
コンパイル時間 314 ms
コンパイル使用メモリ 82,520 KB
実行使用メモリ 77,568 KB
最終ジャッジ日時 2024-09-30 23:54:48
合計ジャッジ時間 7,589 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
54,060 KB
testcase_01 AC 36 ms
54,220 KB
testcase_02 AC 41 ms
52,804 KB
testcase_03 AC 37 ms
53,020 KB
testcase_04 AC 37 ms
52,756 KB
testcase_05 AC 37 ms
53,008 KB
testcase_06 AC 35 ms
52,528 KB
testcase_07 AC 285 ms
77,252 KB
testcase_08 AC 232 ms
77,296 KB
testcase_09 AC 298 ms
77,400 KB
testcase_10 AC 37 ms
53,140 KB
testcase_11 AC 155 ms
76,828 KB
testcase_12 AC 412 ms
77,344 KB
testcase_13 AC 160 ms
77,160 KB
testcase_14 AC 292 ms
77,292 KB
testcase_15 AC 570 ms
77,568 KB
testcase_16 AC 125 ms
76,776 KB
testcase_17 AC 84 ms
76,964 KB
testcase_18 AC 131 ms
77,032 KB
testcase_19 AC 107 ms
76,868 KB
testcase_20 AC 218 ms
76,884 KB
testcase_21 AC 111 ms
76,712 KB
testcase_22 AC 426 ms
77,448 KB
testcase_23 AC 87 ms
76,636 KB
testcase_24 AC 137 ms
76,884 KB
testcase_25 AC 81 ms
76,692 KB
testcase_26 AC 141 ms
76,832 KB
testcase_27 AC 129 ms
77,224 KB
testcase_28 AC 137 ms
76,456 KB
testcase_29 AC 130 ms
77,032 KB
testcase_30 AC 441 ms
77,380 KB
testcase_31 AC 456 ms
77,152 KB
testcase_32 AC 341 ms
76,904 KB
testcase_33 AC 52 ms
63,484 KB
testcase_34 AC 39 ms
53,540 KB
testcase_35 AC 37 ms
53,356 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def bellman_ford(G, s):
    inf = 10 ** 18
    N = len(G)
    dist = [inf] * N
    negative = [False] * N
    dist[s] = 0
    for _ in range(N - 1):
        for u in range(N):
            if dist[u] >= inf//2:
                continue
            for v, c in G[u]:
                if dist[v] > dist[u] + c:
                    dist[v] = dist[u] + c
                    
    for _ in range(N):
        for u in range(N):
            if dist[u] >= inf//2:
                continue
            for v, c in G[u]:
                if dist[v] > dist[u] + c:
                    negative[v] = True
                if negative[u]:
                    negative[v] = True
                    
    return dist, negative

N, M = map(int, input().split())
A = list(map(int, input().split()))
G = [[] for i in range(N)]
for i in range(M):
    a, b, c = map(int, input().split())
    a, b = a - 1 , b - 1
    G[a].append((b, c - A[a]))
    
d, f = bellman_ford(G, 0)
if f[-1]:
    print("inf")
else:
    print(-d[-1]+A[-1])
0