結果
問題 | No.2712 Play more! |
ユーザー |
|
提出日時 | 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 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 31 WA * 2 |
ソースコード
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 -= 1b -= 1G[a].append(b)c *= -1c += A[b]E.append((a, b, c))def BF(start):# Bellman-Fordscore = [-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] + weightupdate = Trueif not update:break# 負閉路が存在するときは-1を返すif i == N - 1:return -1return score# print(E)score = BF(0) # ノード0から各地点の最短距離if score == -1:print('inf')else:print(score[N-1])