結果
問題 | No.2036 Max Middle |
ユーザー | shauuebbit |
提出日時 | 2022-09-06 00:53:08 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 757 bytes |
コンパイル時間 | 1,955 ms |
コンパイル使用メモリ | 207,268 KB |
実行使用メモリ | 13,756 KB |
最終ジャッジ日時 | 2024-05-01 02:11:11 |
合計ジャッジ時間 | 6,227 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
13,756 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 1 ms
6,944 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,944 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 | -- | - |
ソースコード
#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]; } stack<int> s; for (int i = 1; i < N - 1; i++) { if (A[i - 1] < A[i] && A[i] > A[i + 1]) s.push(i); } int ans = 0; while (!s.empty()) { int i = s.top(); s.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]) s.push(i - 1); } if (i < N - 2) { if (A[i] < A[i + 1] && A[i + 1] > A[i + 2]) s.push(i + 1); } } cout << ans << endl; return 0; }