結果
問題 | No.2036 Max Middle |
ユーザー | aaaaaaaaaa2230 |
提出日時 | 2022-08-12 21:50:09 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 524 bytes |
コンパイル時間 | 261 ms |
コンパイル使用メモリ | 82,156 KB |
実行使用メモリ | 121,348 KB |
最終ジャッジ日時 | 2024-09-23 02:09:27 |
合計ジャッジ時間 | 4,346 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
60,388 KB |
testcase_01 | AC | 40 ms
53,696 KB |
testcase_02 | AC | 39 ms
52,996 KB |
testcase_03 | AC | 39 ms
53,744 KB |
testcase_04 | AC | 39 ms
53,092 KB |
testcase_05 | AC | 38 ms
53,572 KB |
testcase_06 | AC | 38 ms
53,276 KB |
testcase_07 | AC | 39 ms
53,360 KB |
testcase_08 | TLE | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
ソースコード
from heapq import heappush,heappop n = int(input()) A = list(map(int,input().split())) num = A[:] done = [0]*n h = [] for i,a in enumerate(A): heappush(h,[-a,i]) ans = 0 while h: c,ind = heappop(h) # print(c,ind) c = -c if ind == 0 or ind == n-1: done[ind] = 1 num[ind] = c continue if done[ind-1] == done[ind+1] == 0: ans += 1 c = min(num[ind-1],num[ind+1])-1 num[ind] = c heappush(h,[-c,ind]) else: done[ind] = 1 print(ans)