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
44
45
46
47
#include <iostream>

using namespace std;

int roznice[50000];

int main()
{
    ios_base::sync_with_stdio(false);
    cin.tie(NULL);

    int n, a, b, ile0 = 0, ile1 = 0, ilem1 = 0, poprawne, licznik = 0;
    cin >> n >> a;
    for (int i = 0; i < n - 1; i++)
    {
        cin >> b;
        if (b > a) roznice[i] = 1;
        else if (b < a) roznice[i] = -1;
        else roznice[i] = 0;
        if (i % 2) roznice[i] *= -1;
        a = b;
    }

    for (int i = 0; i < n - 1; i++)
    {
        if (roznice[i] == 1) ile1++;
        else if (roznice[i] == -1) ilem1++;
        else ile0++;
    }

    if (ile1 > ilem1) poprawne = 1;
    else poprawne = -1;

    for (int i = 0; i < n - 1; i++)
    {
        if (roznice[i] != poprawne)
        {
            licznik++;
            roznice[i] = poprawne;
            roznice[i + 1] = poprawne;
        }
    }

    cout << licznik;

    return 0;
}