結果

問題 No.2036 Max Middle
ユーザー shauuebbitshauuebbit
提出日時 2022-09-06 00:55:14
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 773 bytes
コンパイル時間 2,531 ms
コンパイル使用メモリ 207,096 KB
実行使用メモリ 13,768 KB
最終ジャッジ日時 2024-11-21 01:32:33
合計ジャッジ時間 33,772 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
11,428 KB
testcase_01 AC 2 ms
11,300 KB
testcase_02 AC 2 ms
13,768 KB
testcase_03 AC 2 ms
11,808 KB
testcase_04 AC 2 ms
13,768 KB
testcase_05 AC 2 ms
11,936 KB
testcase_06 AC 2 ms
13,764 KB
testcase_07 AC 2 ms
11,556 KB
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 AC 23 ms
13,768 KB
testcase_15 AC 17 ms
12,196 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 58 ms
13,760 KB
testcase_19 TLE -
testcase_20 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

constexpr long long INF = 1ll << 60;

using namespace std;

int main() {
    int N;
    cin >> N;
    
    vector<long long> A(N, INF);
    
    for (int i = 0; i < N; i++) {
        cin >> A[i];
    }

    priority_queue<int> pq;

    for (int i = 1; i < N - 1; i++) {
        if (A[i - 1] < A[i] && A[i] > A[i + 1]) pq.push(i);
    }

    int ans = 0;

    while (!pq.empty()) {
        int i = pq.top();
        pq.pop();

        ++ans;

        A[i] = min(A[i - 1], A[i + 1]) - 1;

        if (i > 1) {
            if (A[i - 2] < A[i - 1] && A[i - 1] > A[i]) pq.push(i - 1);
        }

        if (i < N - 2) {
            if (A[i] < A[i + 1] && A[i + 1] > A[i + 2]) pq.push(i + 1);
        }
    }

    cout << ans << endl;

    return 0;
}
0