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
60
61
#include <bits/stdc++.h>
using namespace std;
void imax(int &a, int b){
	a=max(a, b);
}
void imin(int &a, int b){
	a=min(a, b);
}
void lmax(long long &a, long long b){
	a=max(a, b);
}
void lmin(long long &a, long long b){
	a=min(a, b);
}
/*
	WARNING: I'm using strange bracket style!
*/
int q, n, res, turns;
vector <int> v[3];
string s;
void solve3(){
	int cRes=0;

	for (auto i: v[2])
		cRes+=max(0, i-2*turns-(i-2*turns!=1 ? 1:0)), turns+=2;
	imax(res, cRes);
	if (v[1].size()==0) return;

	turns=1, cRes=v[1][0];
	for (auto i: v[2])
		cRes+=max(0, i-2*turns-(i-2*turns!=1 ? 1:0)), turns+=2;
	imax(res, cRes);

	if (v[1].size()==1) return;
	turns=2, cRes=v[1][0]+v[1][1]-1;
	for (auto i: v[2])
		cRes+=max(0, i-2*turns-(i-2*turns!=1 ? 1:0)), turns+=2;
	imax(res, cRes);
}
int main()
	{
	ios::sync_with_stdio(0);
	cin.tie(0);
	cout.tie(0);
	cin>>q;
	while (q--)
		{
		cin>>n>>s, res=turns=0, v[0].clear(), v[1].clear(), v[2].clear();
		for (int i=0; i<n; i++)
			if (s[i]=='0')
				{
				int x=i;
				while (x!=n-1 && s[x+1]=='0')
					x++;
				v[(i==0 || x==n-1)?1:2].push_back({x-i+1}), i=x;
				}
		sort(v[1].rbegin(), v[1].rend()), sort(v[2].rbegin(), v[2].rend()), solve3();
		cout<<n-res<<"\n";
		}
	return 0;
	}