結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,968 KB
testcase_01 AC 40 ms
51,968 KB
testcase_02 AC 39 ms
52,352 KB
testcase_03 AC 39 ms
51,968 KB
testcase_04 WA -
testcase_05 AC 39 ms
52,096 KB
testcase_06 AC 39 ms
52,096 KB
testcase_07 AC 299 ms
77,060 KB
testcase_08 AC 254 ms
77,440 KB
testcase_09 AC 262 ms
76,800 KB
testcase_10 WA -
testcase_11 AC 175 ms
76,980 KB
testcase_12 AC 271 ms
76,928 KB
testcase_13 AC 160 ms
76,672 KB
testcase_14 AC 206 ms
76,800 KB
testcase_15 AC 480 ms
77,184 KB
testcase_16 AC 116 ms
76,416 KB
testcase_17 AC 75 ms
72,960 KB
testcase_18 AC 111 ms
76,928 KB
testcase_19 AC 94 ms
76,672 KB
testcase_20 AC 200 ms
77,036 KB
testcase_21 AC 131 ms
77,420 KB
testcase_22 AC 292 ms
77,544 KB
testcase_23 AC 90 ms
76,544 KB
testcase_24 AC 129 ms
76,544 KB
testcase_25 AC 78 ms
73,856 KB
testcase_26 AC 120 ms
76,472 KB
testcase_27 AC 142 ms
74,880 KB
testcase_28 AC 68 ms
65,920 KB
testcase_29 AC 125 ms
77,072 KB
testcase_30 AC 282 ms
77,056 KB
testcase_31 AC 82 ms
77,696 KB
testcase_32 AC 75 ms
74,496 KB
testcase_33 AC 46 ms
54,016 KB
testcase_34 AC 40 ms
51,584 KB
testcase_35 AC 40 ms
51,968 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:
            return -1
    return score
# print(E)
score = BF(0) # ノード0から各地点の最短距離
if score == -1:
    print('inf')
else:
    print(score[N-1])
0