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
#include <iostream>
#include <algorithm>
#include <vector>
using namespace std;

int solve() {
    char w;
    bool b = 0;
    int n, i, l = 0, czas = 0, oca = 0, q;
    vector<pair<int, bool> > t;
    cin >> n;
    cin >> w;
    if(w=='0') {
        l=1;
        b=1;
    }
    for(i = 1; i < n; i++) {
        cin >> w;
        if(w=='0') l++;
        else if(l!=0) {
            if(b)
                t.push_back(make_pair(l<<1, 1));
            else
                t.push_back(make_pair(l, 0));
            l = 0;
            b=0;
        }
    }
    if(l>0) t.push_back(make_pair(l<<1, 1));
    sort(t.begin(), t.end());
    //for(auto a:t)
    //    cout << a.first << " " << a.second << "\n";
    for(i = t.size()-1; i >= 0; i--) {
        if(t[i].second && (t[i].first>>1)-czas>0) {
            oca += (t[i].first>>1)-czas;
            czas++;
        } else {
            q = (t[i].first-(czas<<1)!=1?t[i].first-(czas<<1)-1:1);
            if(q>0) {
                oca+=q;
                czas+=(q>1?2:1);
            } else {
                break;
            }
        }
    }
    return n-oca;
}

int main() {
    ios_base::sync_with_stdio(0);
    cin.tie(0);
    int t;
    cin >> t;
    while(t--)
        cout << solve() << "\n";
    return 0;
}