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
#include<iostream>
#include<vector>
#include<algorithm>
using namespace std;
int f(vector<int>tab, bool mniejsze){
    int ile=0;
    for(int i = 1;i<tab.size();++i){
        if((tab[i-1]<tab[i] && mniejsze)||(tab[i-1]>tab[i] && !mniejsze)||(tab[i-1]==tab[i])){
            if(mniejsze){
                tab[i]=-1000000000;
            }
            else{
                tab[i]=1000000000;
            }
            ++ile;
        }
        mniejsze=!mniejsze;
    }
    return ile;
}
int main(){
    ios::sync_with_stdio(false);
    cin.tie(NULL); cout.tie(NULL);
    int n; cin>>n;
    vector<int>tab(n);
    for(int i = 0;i<n;++i){
        cin>>tab[i];
    }
    cout<<min(f(tab,true),f(tab,false));

}