結果

問題 No.2712 Play more!
ユーザー RYOH2718RYOH2718
提出日時 2024-03-31 17:16:22
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 940 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 82,496 KB
実行使用メモリ 78,044 KB
最終ジャッジ日時 2024-09-30 21:09:39
合計ジャッジ時間 5,127 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
54,168 KB
testcase_01 AC 37 ms
53,560 KB
testcase_02 AC 39 ms
53,424 KB
testcase_03 AC 39 ms
53,200 KB
testcase_04 WA -
testcase_05 AC 39 ms
52,336 KB
testcase_06 AC 38 ms
53,684 KB
testcase_07 AC 155 ms
77,072 KB
testcase_08 AC 207 ms
78,044 KB
testcase_09 AC 150 ms
77,388 KB
testcase_10 WA -
testcase_11 AC 122 ms
76,396 KB
testcase_12 AC 218 ms
77,244 KB
testcase_13 AC 122 ms
76,572 KB
testcase_14 AC 176 ms
77,240 KB
testcase_15 AC 319 ms
77,108 KB
testcase_16 AC 93 ms
76,812 KB
testcase_17 AC 77 ms
73,904 KB
testcase_18 AC 100 ms
76,616 KB
testcase_19 AC 97 ms
76,840 KB
testcase_20 AC 144 ms
76,624 KB
testcase_21 AC 105 ms
76,496 KB
testcase_22 AC 222 ms
77,036 KB
testcase_23 AC 87 ms
76,780 KB
testcase_24 AC 105 ms
76,496 KB
testcase_25 AC 77 ms
74,416 KB
testcase_26 AC 108 ms
76,484 KB
testcase_27 AC 107 ms
77,012 KB
testcase_28 AC 64 ms
66,628 KB
testcase_29 AC 109 ms
77,144 KB
testcase_30 AC 279 ms
76,824 KB
testcase_31 AC 84 ms
76,960 KB
testcase_32 AC 87 ms
77,332 KB
testcase_33 AC 44 ms
54,824 KB
testcase_34 AC 39 ms
52,620 KB
testcase_35 AC 39 ms
53,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 標準入力された値を整数に変換する
def INT():
    return int(input())


# 標準入力された複数の値を整数に変換する
def MI():
    return map(int, input().split())


# 標準入力された複数の値を整数のリストに変換する
def LI():
    return list(map(int, input().split()))


N, M = MI()
A = LI()
G = [[] for i in range(N)]
for _ in range(M):
    a, b, c = MI()
    a -= 1
    b -= 1
    G[a].append((b, c - A[b]))

MINF = 10**18
dist = [MINF] * N
dist[0] = -A[0]
exist_negative_cycle = False
for i in range(N):
    update = False
    for u in range(N):
        if dist[u] == MINF:
            continue
        for v, c in G[u]:
            if dist[v] > dist[u] + c:
                dist[v] = dist[u] + c
                update = True

    if not update:
        break

    if i == N - 1 and update:
        exist_negative_cycle = True

print("inf" if exist_negative_cycle else -dist[N - 1])
0