#include <bits/stdc++.h>
using namespace std;
int n, t[50005], dp[50005][2], res;
void in()
{
scanf("%d", &n);
for(int i = 1; i <= n; ++i)
scanf("%d", &t[i]);
}
void calc1()
{
dp[1][0] = 0;
dp[1][1] = 1;
for(int i = 2; i <= n; ++i)
{
if(((i & 1) && t[i - 1] < t[i]) || (((i & 1) ^ 1) && t[i - 1] > t[i]))
dp[i][0] = min(dp[i - 1][0], dp[i - 1][1]);
else
dp[i][0] = dp[i - 1][1];
dp[i][1] = min(dp[i - 1][0], dp[i - 1][1]) + 1;
}
res = min(dp[n][0], dp[n][1]);
}
void calc2()
{
dp[1][0] = 0;
dp[1][1] = 1;
for(int i = 2; i <= n; ++i)
{
if(((i & 1) && t[i - 1] > t[i]) || (((i & 1) ^ 1) && t[i - 1] < t[i]))
dp[i][0] = min(dp[i - 1][0], dp[i - 1][1]);
else
dp[i][0] = dp[i - 1][1];
dp[i][1] = min(dp[i - 1][0], dp[i - 1][1]) + 1;
}
res = min(res, min(dp[n][0], dp[n][1]));
}
void out()
{
printf("%d", res);
}
int main()
{
in();
calc1();
calc2();
out();
}
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 48 49 50 51 52 53 54 55 56 57 58 59 | #include <bits/stdc++.h> using namespace std; int n, t[50005], dp[50005][2], res; void in() { scanf("%d", &n); for(int i = 1; i <= n; ++i) scanf("%d", &t[i]); } void calc1() { dp[1][0] = 0; dp[1][1] = 1; for(int i = 2; i <= n; ++i) { if(((i & 1) && t[i - 1] < t[i]) || (((i & 1) ^ 1) && t[i - 1] > t[i])) dp[i][0] = min(dp[i - 1][0], dp[i - 1][1]); else dp[i][0] = dp[i - 1][1]; dp[i][1] = min(dp[i - 1][0], dp[i - 1][1]) + 1; } res = min(dp[n][0], dp[n][1]); } void calc2() { dp[1][0] = 0; dp[1][1] = 1; for(int i = 2; i <= n; ++i) { if(((i & 1) && t[i - 1] > t[i]) || (((i & 1) ^ 1) && t[i - 1] < t[i])) dp[i][0] = min(dp[i - 1][0], dp[i - 1][1]); else dp[i][0] = dp[i - 1][1]; dp[i][1] = min(dp[i - 1][0], dp[i - 1][1]) + 1; } res = min(res, min(dp[n][0], dp[n][1])); } void out() { printf("%d", res); } int main() { in(); calc1(); calc2(); out(); } |
English