結果

問題 No.2036 Max Middle
ユーザー mkawa2mkawa2
提出日時 2022-08-12 21:58:34
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,706 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 81,680 KB
実行使用メモリ 56,100 KB
最終ジャッジ日時 2023-10-24 09:56:05
合計ジャッジ時間 5,203 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
56,100 KB
testcase_01 AC 44 ms
56,100 KB
testcase_02 AC 44 ms
56,100 KB
testcase_03 AC 43 ms
56,100 KB
testcase_04 AC 44 ms
56,100 KB
testcase_05 AC 43 ms
56,100 KB
testcase_06 AC 43 ms
56,100 KB
testcase_07 AC 44 ms
56,100 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 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()
dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
inf = (1 << 63)-1
# inf = (1 << 31)-1
# md = 10**9+7
md = 998244353

from random import randrange
from heapq import *

def left(aa):
    while 1:
        for i in range(n-2):
            if aa[i] < aa[i+1] and aa[i+1] > aa[i+2]:
                aa[i+1] = min(aa[i], aa[i+2])-1
                print(i, aa)
                break
        else:
            break

def mx(aa):
    hp = []
    ans = 0
    for i, a in enumerate(aa):
        if i == 0 or i == n-1: continue
        if aa[i-1] < a and a > aa[i+1]:
            heappush(hp, (-a, i))
    while hp:
        a, i = heappop(hp)
        if aa[i] != -a: continue
        ans += 1
        aa[i] = min(aa[i-1], aa[i+1])-1
        if i-2 >= 0 and aa[i-2] < aa[i-1]: heappush(hp, (-aa[i-1], i-1))
        if i+2 < n and aa[i+1] > aa[i+2]: heappush(hp, (-aa[i+1], i+1))
        # print(i,aa)
    return ans

n = II()
aa = LI()

# aa=[randrange(1,50) for _ in range(n)]
# for i in range(n-1):
#     if aa[i]==aa[i+1]:
#         aa[i+1]+=1

# print(aa)

# left(aa[:])
# print()
ans = mx(aa[:])
print(ans)
0