結果
問題 |
No.2712 Play more!
|
ユーザー |
|
提出日時 | 2024-04-13 09:52:30 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,334 bytes |
コンパイル時間 | 200 ms |
コンパイル使用メモリ | 82,264 KB |
実行使用メモリ | 79,296 KB |
最終ジャッジ日時 | 2024-10-02 23:57:37 |
合計ジャッジ時間 | 6,504 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 RE * 1 |
other | AC * 5 RE * 28 |
ソースコード
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])