結果
問題 | No.2036 Max Middle |
ユーザー | taiga0629kyopro |
提出日時 | 2022-08-12 22:16:35 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 201 ms / 2,000 ms |
コード長 | 1,213 bytes |
コンパイル時間 | 186 ms |
コンパイル使用メモリ | 82,248 KB |
実行使用メモリ | 126,856 KB |
最終ジャッジ日時 | 2024-09-23 02:52:13 |
合計ジャッジ時間 | 3,648 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
54,376 KB |
testcase_01 | AC | 39 ms
53,856 KB |
testcase_02 | AC | 39 ms
53,156 KB |
testcase_03 | AC | 40 ms
54,008 KB |
testcase_04 | AC | 39 ms
53,240 KB |
testcase_05 | AC | 40 ms
53,236 KB |
testcase_06 | AC | 38 ms
53,288 KB |
testcase_07 | AC | 38 ms
53,004 KB |
testcase_08 | AC | 145 ms
100,064 KB |
testcase_09 | AC | 190 ms
120,464 KB |
testcase_10 | AC | 197 ms
122,132 KB |
testcase_11 | AC | 171 ms
115,140 KB |
testcase_12 | AC | 171 ms
115,388 KB |
testcase_13 | AC | 201 ms
123,180 KB |
testcase_14 | AC | 69 ms
73,076 KB |
testcase_15 | AC | 69 ms
71,976 KB |
testcase_16 | AC | 197 ms
126,856 KB |
testcase_17 | AC | 188 ms
116,292 KB |
testcase_18 | AC | 174 ms
115,396 KB |
testcase_19 | AC | 170 ms
115,276 KB |
testcase_20 | AC | 192 ms
114,812 KB |
ソースコード
######################################## from heapq import heappush, heappop def dijkstra( G, s, INF=10 ** 18): """ https://tjkendev.github.io/procon-library/python/graph/dijkstra.html O((|E|+|V|)log|V|) V: 頂点数 G[v] = [(nod, cost)]: 頂点vから遷移可能な頂点(nod)とそのコスト(cost) s: 始点の頂点""" N=len(G) N+=1 dist = [INF] * N hp = [(0, s)] # (c, v) dist[s] = 0 while hp: c, v = heappop(hp) #vまで行くコストがc if dist[v] < c: continue for u, cost in G[v]: if dist[v] + cost < dist[u]: dist[u] = dist[v] + cost heappush(hp, (dist[u], u)) return dist ################################################## n=int(input()) a=[10**12]+list(map(int,input().split()))+[10**12] root=[[] for i in range(n+3)] s=n+2 root[s].append((1,0)) root[s].append((n,0)) for i in range(1,n+1): if a[i-1]<a[i]: root[i-1].append((i,1)) else: root[i-1].append((i,0)) if a[i+1]<a[i]: root[i+1].append((i,1)) else: root[i+1].append((i,0)) d=dijkstra(root,s) ans=0 for i in range(1,n+1):ans+=d[i] print(ans)