ROCK - Sweet and Sour Rock


A manufacturer of sweets has started production of a new type of sweet called rock. Rock comes in sticks composed of one-centimetre-long segments, some of which are sweet, and the rest are sour. Before sale, the rock is broken up into smaller pieces by splitting it at the connections of some segments.

Today's children are very particular about what they eat, and they will only buy a piece of rock if it contains more sweet segments than sour ones. Try to determine the total length of rock which can be sold after breaking up the rock in the best possible way.

Input

The input begins with the integer t, the number of test cases. Then t test cases follow.

For each test case, the first line of input contains one integer N - the length of the stick in centimetres (1<=N<=200). The next line is a sequence of N characters '0' or '1', describing the segments of the stick from the left end to the right end ('0' denotes a sour segment, '1' - a sweet one).

Output

For each test case output a line with a single integer: the total length of rock that can be sold after breaking up the rock in the best possible way.

Example

Sample input:
2
15
100110001010001
16
0010111101100000

Sample output:
9
13

hide comments
Anuva Agarwal: 2014-10-04 15:13:13

phew! :)

AlcatraZ: 2014-10-02 14:04:38

Nice one..

Aravindan Chandrasekaran: 2014-09-17 14:13:40

Input string has more than 200 characters friends .

selfcompiler: 2014-08-11 20:59:27

simple Dp problem :)

Bartosz Bednarczyk: 2014-06-25 15:35:56

@|RAM§DEN|
You're wrong. Recursion accepted.

nitesh kumar: 2014-06-24 08:08:50

O(n^3) solution..

|RAMSDEN|: 2014-06-19 10:09:45

Recursion gives tle
Iterative accepted:)

Harshit: 2014-06-05 06:36:53

you need to lessen the time limit

arbit: 2014-05-27 14:42:14

A test case I missed that can be helpful to you.

1000111001001

Ans 10

JordanBelfort: 2014-02-07 16:06:04

Really nice one..:)


Added by:adrian
Date:2004-08-03
Time limit:7s
Source limit:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:All
Resource:based on a problem from the VII Polish Collegiate Team Programming Contest (AMPPZ), 2002