結果
問題 | No.2335 Jump |
ユーザー | Shirotsume |
提出日時 | 2023-06-02 21:27:17 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 127 ms / 2,000 ms |
コード長 | 1,222 bytes |
コンパイル時間 | 180 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 96,628 KB |
最終ジャッジ日時 | 2024-06-08 22:17:25 |
合計ジャッジ時間 | 2,867 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 47 ms
55,424 KB |
testcase_01 | AC | 47 ms
55,552 KB |
testcase_02 | AC | 48 ms
55,680 KB |
testcase_03 | AC | 49 ms
55,936 KB |
testcase_04 | AC | 49 ms
55,680 KB |
testcase_05 | AC | 47 ms
55,808 KB |
testcase_06 | AC | 47 ms
55,808 KB |
testcase_07 | AC | 61 ms
65,408 KB |
testcase_08 | AC | 60 ms
65,280 KB |
testcase_09 | AC | 62 ms
65,408 KB |
testcase_10 | AC | 62 ms
65,408 KB |
testcase_11 | AC | 61 ms
65,536 KB |
testcase_12 | AC | 125 ms
96,424 KB |
testcase_13 | AC | 127 ms
96,380 KB |
testcase_14 | AC | 124 ms
96,512 KB |
testcase_15 | AC | 125 ms
96,500 KB |
testcase_16 | AC | 123 ms
96,628 KB |
testcase_17 | AC | 121 ms
96,384 KB |
testcase_18 | AC | 125 ms
96,596 KB |
testcase_19 | AC | 122 ms
96,348 KB |
testcase_20 | AC | 121 ms
96,000 KB |
testcase_21 | AC | 121 ms
96,000 KB |
ソースコード
import sys, time, random from collections import deque, Counter, defaultdict input = lambda: sys.stdin.readline().rstrip() ii = lambda: int(input()) mi = lambda: map(int, input().split()) li = lambda: list(mi()) inf = 2 ** 63 - 1 mod = 998244353 def Dijkstra(s, graph): INF = 2 ** 63 - 1 import heapq n = len(graph) dist = [INF] * n dist[s] = 0 bef = [0] * n bef[s] = s hq = [(0, s)] heapq.heapify(hq) while hq: c, now = heapq.heappop(hq) if c > dist[now]: continue for to, cost in graph[now]: if dist[now] + cost < dist[to]: dist[to] = cost + dist[now] bef[to] = now heapq.heappush(hq, (dist[to], + to)) return dist, bef def DijkstraRest(bef, t): now = t ret = [] while bef[now] != now: ret.append((bef[now], now)) now = bef[now] ret.reverse() return ret n = ii() a = li() graph = [[] for _ in range(n)] for i in range(n): if 0 <= i - 1: graph[i].append((i - 1, abs(a[i] - a[i - 1]) - 1)) if i + 1 < n: graph[i].append((i + 1, abs(a[i] - a[i + 1]) - 1)) d, _ = Dijkstra(0, graph) print(d[n - 1] + a[0] - 1)