Algorithm


B. Disturbed People
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

There is a house with n flats situated on the main street of Berlatov. Vova is watching this house every night. The house can be represented as an array of n integer numbers a1,a2,,an�1,�2,…,��, where ai=1��=1 if in the i-th flat the light is on and ai=0��=0 otherwise.

Vova thinks that people in the i-th flats are disturbed and cannot sleep if and only if 1<i<n1<�<� and ai1=ai+1=1��−1=��+1=1 and ai=0��=0.

Vova is concerned by the following question: what is the minimum number k such that if people from exactly k pairwise distinct flats will turn off the lights then nobody will be disturbed? Your task is to find this number k.

Input

The first line of the input contains one integer n (3n1003≤�≤100) — the number of flats in the house.

The second line of the input contains n integers a1,a2,,an�1,�2,…,�� (ai{0,1}��∈{0,1}), where ai�� is the state of light in the i-th flat.

Output

Print only one integer — the minimum number k such that if people from exactly k pairwise distinct flats will turn off the light then nobody will be disturbed.

Examples
input
Copy
10
1 1 0 1 1 0 1 0 1 0
output
Copy
2
input
Copy
5
1 1 0 0 0
output
Copy
0
input
Copy
4
1 1 1 1
output
Copy
0
Note

In the first example people from flats 22 and 77 or 44 and 77 can turn off the light and nobody will be disturbed. It can be shown that there is no better answer in this example.

There are no disturbed people in second and third examples.

 



 

Code Examples

#1 Code Example with C++ Programming

Code - C++ Programming

#include <bits/stdc++.h>

using namespace std;

int const N = 1e2 + 1;
int n, a[N];

int main() {
  scanf("%d", &n);
  for(int i = 0; i < n; ++i)
    scanf("%d", a + i);

  int res = 0;
  for(int i = 1; i < n - 1; ++i)
    if(a[i] == 0 && a[i - 1] == 1 && a[i + 1] == 1)
      a[i + 1] = 0, ++res;

  printf("%d\n", res);

  return 0;
}
Copy The Code & Try With Live Editor

Input

x
+
cmd
10
1 1 0 1 1 0 1 0 1 0

Output

x
+
cmd
2
Advertisements

Demonstration


Codeforces Solution-B. Disturbed People-Solution in C, C++, Java, Python

Previous
Codeforces solution 1080-B-B. Margarite and the best present codeforces solution
Next
CodeChef solution DETSCORE - Determine the Score CodeChef solution C,C+