#include <iostream> using namespace std; int t[50001]; int main() { ios_base::sync_with_stdio(false); int n,w=0; cin>>n; for(int i=0;i<n;++i){ cin>>t[i]; } int pom=0; for(int i=0;i<n-1;++i){ if(i%2==0&&t[i]>=t[i+1]){ pom++; i++; } else if(i%2==1&&t[i]<=t[i+1]){ pom++; i++; } //cout<<i<<' '<<pom<<endl; } w=pom; pom=0; for(int i=0;i<n-1;++i){ if(i%2==1&&t[i]>=t[i+1]){ pom++; i++; } else if(i%2==0&&t[i]<=t[i+1]){ pom++; i++; } } cout<<min(w,pom); return 0; }
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 43 | #include <iostream> using namespace std; int t[50001]; int main() { ios_base::sync_with_stdio(false); int n,w=0; cin>>n; for(int i=0;i<n;++i){ cin>>t[i]; } int pom=0; for(int i=0;i<n-1;++i){ if(i%2==0&&t[i]>=t[i+1]){ pom++; i++; } else if(i%2==1&&t[i]<=t[i+1]){ pom++; i++; } //cout<<i<<' '<<pom<<endl; } w=pom; pom=0; for(int i=0;i<n-1;++i){ if(i%2==1&&t[i]>=t[i+1]){ pom++; i++; } else if(i%2==0&&t[i]<=t[i+1]){ pom++; i++; } } cout<<min(w,pom); return 0; } |