結果

問題 No.2036 Max Middle
ユーザー NPNP
提出日時 2024-05-13 11:33:12
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 641 bytes
コンパイル時間 314 ms
コンパイル使用メモリ 82,032 KB
実行使用メモリ 394,652 KB
最終ジャッジ日時 2024-12-20 09:25:27
合計ジャッジ時間 32,495 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
59,520 KB
testcase_01 AC 39 ms
232,908 KB
testcase_02 AC 40 ms
60,764 KB
testcase_03 AC 41 ms
313,504 KB
testcase_04 AC 44 ms
59,152 KB
testcase_05 AC 40 ms
327,772 KB
testcase_06 AC 40 ms
59,504 KB
testcase_07 AC 40 ms
159,508 KB
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 AC 129 ms
82,756 KB
testcase_15 AC 116 ms
394,652 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 80 ms
109,496 KB
testcase_19 TLE -
testcase_20 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

def count_operations(N, A):
    def is_peak(i):
        return 0 < i < N - 1 and A[i - 1] < A[i] > A[i + 1]

    peaks = {i for i in range(1, N - 1) if is_peak(i)}
    count = 0

    while peaks:
        to_check = list(peaks)
        for i in to_check:
            if i in peaks:
                peaks.remove(i)
                count += 1
                A[i] = min(A[i - 1], A[i + 1]) - 1
                for j in (i - 1, i + 1):
                    if 0 < j < N - 1 and is_peak(j):
                        peaks.add(j)

    return count

N = int(input())
A = list(map(int, input().split()))
result = count_operations(N, A)

print(result)
0