結果
問題 | No.2712 Play more! |
ユーザー | budou |
提出日時 | 2024-04-11 13:37:47 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 391 ms / 2,000 ms |
コード長 | 1,395 bytes |
コンパイル時間 | 238 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 79,360 KB |
最終ジャッジ日時 | 2024-10-02 21:35:30 |
合計ジャッジ時間 | 6,405 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 61 ms
67,200 KB |
testcase_01 | AC | 61 ms
67,200 KB |
testcase_02 | AC | 62 ms
66,944 KB |
testcase_03 | AC | 60 ms
67,200 KB |
testcase_04 | AC | 62 ms
67,072 KB |
testcase_05 | AC | 61 ms
66,816 KB |
testcase_06 | AC | 61 ms
67,072 KB |
testcase_07 | AC | 220 ms
78,412 KB |
testcase_08 | AC | 191 ms
78,848 KB |
testcase_09 | AC | 193 ms
78,592 KB |
testcase_10 | AC | 61 ms
66,944 KB |
testcase_11 | AC | 181 ms
78,772 KB |
testcase_12 | AC | 237 ms
78,312 KB |
testcase_13 | AC | 171 ms
78,720 KB |
testcase_14 | AC | 223 ms
78,720 KB |
testcase_15 | AC | 391 ms
79,104 KB |
testcase_16 | AC | 128 ms
78,880 KB |
testcase_17 | AC | 88 ms
75,520 KB |
testcase_18 | AC | 123 ms
78,336 KB |
testcase_19 | AC | 108 ms
78,080 KB |
testcase_20 | AC | 196 ms
79,104 KB |
testcase_21 | AC | 157 ms
79,360 KB |
testcase_22 | AC | 229 ms
78,720 KB |
testcase_23 | AC | 104 ms
78,848 KB |
testcase_24 | AC | 142 ms
78,592 KB |
testcase_25 | AC | 94 ms
78,720 KB |
testcase_26 | AC | 131 ms
78,464 KB |
testcase_27 | AC | 121 ms
78,336 KB |
testcase_28 | AC | 77 ms
72,320 KB |
testcase_29 | AC | 138 ms
78,256 KB |
testcase_30 | AC | 278 ms
78,736 KB |
testcase_31 | AC | 86 ms
78,652 KB |
testcase_32 | AC | 86 ms
79,104 KB |
testcase_33 | AC | 64 ms
67,968 KB |
testcase_34 | AC | 64 ms
66,944 KB |
testcase_35 | AC | 62 ms
67,072 KB |
ソースコード
import typing import sys from collections import deque, defaultdict input = lambda: sys.stdin.readline().strip() inf = 10**18 mod = 998244353 def BellmanFord(N, s, Edges): dist = [inf for _ in range(N)] dist[s] = 0 # N-1回緩める for _ in range(N-1): changed = False for v_from, v_to, c in Edges: if dist[v_from] == inf: continue if dist[v_from]+c < dist[v_to]: dist[v_to] = dist[v_from]+c changed = True if not changed: return dist for _ in range(N-1): changed = False for v_from, v_to, c in Edges: # 非連結の場合はあり得る if dist[v_from] == inf: continue # -inf + c が -inf以外の何よりも小さいようなinfの値を選択する if dist[v_from]+c < dist[v_to]: dist[v_to] = -inf changed = True if not changed: return dist return dist def solve(): N, M = map(int, input().split()) A = list(map(int, input().split())) Edges = [] # (v_from, v_to, cost) for _ in range(M): a, b, c = map(int, input().split()) # v_fromを攻略して移動し,v_toへと到達する時間 Edges.append((a-1, b-1, c-A[a-1])) dist = BellmanFord(N, 0, Edges) if dist[-1] == -inf: print('inf') return # Nを攻略する時間を足す print(-dist[-1]+A[-1]) def main(): t = 1 for _ in range(t): solve() main()