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
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
#include <bits/stdc++.h>
using namespace std;

const int MAXN=1e5;

vector<char> miasta (MAXN+10);

enum Type {
    _normal=-1,
    _granica=-2,
};

struct Obszar{
    long long int v;
    long long int s;
    long long int g;

    bool operator<(const Obszar& el)const
    {
        if(s == el.s){
            if( g == el.g)
                return v < el.v;
            else
                return g > el.g;
        }
        else
            return s < el.s;
    }
};

priority_queue<Obszar> moce;


int zakazenia(int n){
    int pom=0,d=0;



    for(int i=1;i<=n+1;++i){
        if(i<=n)
            cin>>miasta[i];

        if(miasta[i]=='0' && i<=n)
            ++pom;
        else if(i==n+1 || i==pom+1){
            if(pom!=0)
                moce.push({pom,pom,_granica});
            pom=0;
        }
        else{
            if(pom!=0)
                moce.push({pom,pom/2+pom%2,_normal});
            pom=0;
        }
    }

    while(!moce.empty()){
        auto[v,s,g]=moce.top();
        moce.pop();
//        cout<<v<<" "<<s<<" "<<g<<"\n";
        if(g==_granica && s-d>0){
            n-=(s-d);
            ++d;
        }
        else if(g==_normal && s-d>0 ){
            if(v-d*2==1){
                n-=(v-d*2);
                ++d;
            }else{
                n-=(v-d*2)-1;
                d+=2;
            }
        }

    }
    return n;
}

/*
2
16
0001010000011000
10
1000100001
*/

int main(){
    ios_base::sync_with_stdio(0);
    cin.tie(0); cout.tie(0);
    int n,t;

    for(int i=0;i<=MAXN;++i)
        miasta[i]='0';

    cin>>t;

    for(int i=1;i<=t;++i){
        cin>>n;
        cout<<zakazenia(n)<<"\n";
    }














    return 0;
}