結果

問題 No.2712 Play more!
ユーザー ra5anchorra5anchor
提出日時 2024-04-13 09:52:30
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 1,334 bytes
コンパイル時間 606 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 78,984 KB
最終ジャッジ日時 2024-04-13 09:52:39
合計ジャッジ時間 8,048 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,440 KB
testcase_01 RE -
testcase_02 AC 39 ms
52,196 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 AC 71 ms
66,840 KB
testcase_29 RE -
testcase_30 RE -
testcase_31 AC 86 ms
77,500 KB
testcase_32 AC 81 ms
74,788 KB
testcase_33 AC 46 ms
55,028 KB
testcase_34 AC 39 ms
52,692 KB
testcase_35 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
A = list(map(int, input().split()))

G = [[] for _ in range(N)]
E = []
for i in range(M):
    a, b, c = map(int, input().split())
    a -= 1
    b -= 1
    G[a].append(b)
    c *= -1
    c += A[b]
    E.append((a, b, c))

def BF(start):
    # Bellman-Ford
    score = [-float('inf')] * N # スタート地点からの最小距離
    score[start] = A[start]

    for i in range(N):
        update = False # 更新が行われたか
        for u, v, weight in E:
            if score[v] < score[u] + weight:
                score[v] = score[u] + weight
                update = True
        if not update:
            break
        # 負閉路が存在するときは-1を返す
        if i == N - 1:
            if check == -10**18:
                check = score[N-1]
            else:
                for u, v, weight in E:
                    if score[v] < score[u] + weight:
                        score[v] = score[u] + weight
                        update = True
                check2 = score[N-1]
                if check == check2:
                    print(check)
                    exit()
                else:
                    return -1
    return score
# print(E)
score = BF(0) # ノード0から各地点の最短距離
if score == -1:
    print('inf')
else:
    print(score[N-1])
0