結果

問題 No.2712 Play more!
ユーザー ra5anchorra5anchor
提出日時 2024-04-13 09:54:16
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,239 bytes
コンパイル時間 225 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 77,776 KB
最終ジャッジ日時 2024-10-02 23:57:46
合計ジャッジ時間 6,245 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,224 KB
testcase_01 AC 39 ms
51,968 KB
testcase_02 AC 38 ms
52,096 KB
testcase_03 AC 39 ms
52,096 KB
testcase_04 AC 39 ms
51,712 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 239 ms
77,312 KB
testcase_10 AC 40 ms
52,096 KB
testcase_11 AC 179 ms
76,832 KB
testcase_12 AC 277 ms
77,184 KB
testcase_13 AC 165 ms
76,544 KB
testcase_14 WA -
testcase_15 AC 483 ms
77,312 KB
testcase_16 AC 119 ms
76,652 KB
testcase_17 AC 80 ms
74,240 KB
testcase_18 AC 113 ms
77,068 KB
testcase_19 AC 97 ms
76,416 KB
testcase_20 AC 204 ms
77,168 KB
testcase_21 AC 135 ms
77,132 KB
testcase_22 AC 299 ms
77,440 KB
testcase_23 AC 96 ms
77,056 KB
testcase_24 AC 134 ms
76,544 KB
testcase_25 AC 88 ms
77,312 KB
testcase_26 AC 121 ms
76,928 KB
testcase_27 WA -
testcase_28 AC 67 ms
66,048 KB
testcase_29 AC 130 ms
76,672 KB
testcase_30 AC 287 ms
76,800 KB
testcase_31 AC 81 ms
77,056 KB
testcase_32 AC 76 ms
74,540 KB
testcase_33 AC 44 ms
54,272 KB
testcase_34 AC 39 ms
51,968 KB
testcase_35 AC 41 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

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:
            check = score[N-1]
            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