結果
問題 | No.2712 Play more! |
ユーザー | ra5anchor |
提出日時 | 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 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
52,224 KB |
testcase_01 | RE | - |
testcase_02 | AC | 39 ms
52,096 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 | 68 ms
65,536 KB |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | AC | 80 ms
77,576 KB |
testcase_32 | AC | 76 ms
74,880 KB |
testcase_33 | AC | 45 ms
54,272 KB |
testcase_34 | AC | 39 ms
51,712 KB |
testcase_35 | RE | - |
ソースコード
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])