#include <bits/stdc++.h> using namespace std; #define st first #define nd second const int INF = 1e7 + 7; long long n, resmin, resmax, x, px, y, py; int main(){ cin.tie(0); cout.tie(0); ios_base::sync_with_stdio(0); cin >> n >> px; py = px; for(int i = 1; i < n; i++){ cin >> x; y = x; if(i % 2 == 1){ if(x <= px){ x = INF; resmin++; } if(y >= py){ y = -INF; resmax++; } } else{ if(x >= px){ x = -INF; resmin++; } if(y <= py){ y = INF; resmax++; } } px = x; py = y; } cout << min(resmin, resmax); }
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 42 | #include <bits/stdc++.h> using namespace std; #define st first #define nd second const int INF = 1e7 + 7; long long n, resmin, resmax, x, px, y, py; int main(){ cin.tie(0); cout.tie(0); ios_base::sync_with_stdio(0); cin >> n >> px; py = px; for(int i = 1; i < n; i++){ cin >> x; y = x; if(i % 2 == 1){ if(x <= px){ x = INF; resmin++; } if(y >= py){ y = -INF; resmax++; } } else{ if(x >= px){ x = -INF; resmin++; } if(y <= py){ y = INF; resmax++; } } px = x; py = y; } cout << min(resmin, resmax); } |