Source Code
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
int main()
{
    ios::sync_with_stdio(0);
    cin.tie(0);

    int n;
    cin>>n;
    int ans=0;
    bool a=0,b=0;
    for(int i=0;i<n;i++)
    {
        int x;
        cin>>x;
        if(x==1)a=1;
        else b=1;
        if(a && b)ans++,a=0,b=0;
    }
    cout<<ans<<endl;
    return 0;
}
Copy
Tha Bits Kaitokid
GNU G++17
9 ms
804 KB
Accepted