結果
問題 | No.2036 Max Middle |
ユーザー | siman |
提出日時 | 2022-08-15 15:04:07 |
言語 | C++17(clang) (17.0.6 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,139 bytes |
コンパイル時間 | 3,452 ms |
コンパイル使用メモリ | 143,360 KB |
実行使用メモリ | 11,784 KB |
最終ジャッジ日時 | 2024-10-02 03:28:39 |
合計ジャッジ時間 | 5,897 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,624 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 2 ms
5,248 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 <cassert> #include <cmath> #include <algorithm> #include <iostream> #include <iomanip> #include <climits> #include <map> #include <queue> #include <set> #include <cstring> #include <vector> using namespace std; typedef long long ll; const ll MOD = 1000000007; struct Node { int idx; int v; Node(int idx = -1, int v = -1) { this->idx = idx; this->v = v; } bool operator>(const Node &n) const { return v < n.v; } }; int main() { int N; cin >> N; vector<int> A(N); priority_queue <Node, vector<Node>, greater<Node>> pque; for (int i = 0; i < N; ++i) { cin >> A[i]; if (1 <= i && i <= N - 2) { pque.push(Node(i, A[i])); } } int ans = 0; while (not pque.empty()) { Node node = pque.top(); pque.pop(); int left = node.idx - 1; int right = node.idx + 1; // fprintf(stderr, "(%d, %d, %d)\n", A[left], A[node.idx], A[right]); if (A[left] < A[node.idx] && A[node.idx] > A[right]) { int nv = min(A[left], A[right]) - 1; A[node.idx] = nv; ++ans; pque.push(Node(node.idx, nv)); } } cout << ans << endl; return 0; }