#include<bits/stdc++.h> using namespace std; int solve(const vector<int>& v, bool up) { int res = 0; int count = 0; for (int i = 0; i < (int)v.size()-1; i++, up = !up) { if ((v[i] < v[i+1] && up) || (v[i] > v[i+1] && !up)) { if (count > 0) { res += (count+1)/2; count = 0; } } else count++; } if (count > 0) { res += (count+1)/2; count = 0; } return res; } int main() { ios_base::sync_with_stdio(false); cin.tie(0); cout.tie(0); int n; cin >> n; vector<int> v(n); for (auto& e : v) cin >> e; cout << min(solve(v, true), solve(v, false)) << "\n"; }
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 | #include<bits/stdc++.h> using namespace std; int solve(const vector<int>& v, bool up) { int res = 0; int count = 0; for (int i = 0; i < (int)v.size()-1; i++, up = !up) { if ((v[i] < v[i+1] && up) || (v[i] > v[i+1] && !up)) { if (count > 0) { res += (count+1)/2; count = 0; } } else count++; } if (count > 0) { res += (count+1)/2; count = 0; } return res; } int main() { ios_base::sync_with_stdio(false); cin.tie(0); cout.tie(0); int n; cin >> n; vector<int> v(n); for (auto& e : v) cin >> e; cout << min(solve(v, true), solve(v, false)) << "\n"; } |