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
ashishranjan28:
2017-05-25 09:47:06
recursion partitioning + memoisation |
|
nilabja16180:
2017-03-29 10:56:34
AC in one GO! |
|
cake_is_a_lie:
2017-02-23 03:32:49
This problem can be solved in O(N) time, so for example on my computer I can solve instances with N=1000000 in <0.1s.
|
|
gautam:
2017-02-22 12:11:33
nailed it :) |
|
iam_ss:
2017-02-11 17:38:51
AC in first attempted. Very basic DP. |
|
flyingduchman_:
2016-12-26 12:24:51
A modified Matrix Chain Multiplication algorithm (MCM) can solve it in O(n^3) using the dynamic programming(dp) approach. The idea is to generate all possible combination of sub-problems and derive a formula that solves the problem in bottom-up manner. Assuming you know the dp solution of MCM, let M[n][n] be a table where M[i,j] stores the solution of elements from i to j in given string. Generate all possible combination of array-index i, j, k i.e. i<=k<j. In the table each range(i to j) can have two properties like:
|
|
iharsh234:
2016-08-03 16:28:51
1D DP + recursion faster then chain multiplication
|
|
Anuj Arora:
2016-07-17 17:14:08
Phew ....Accepted....Missing condition to compare zeros and ones Last edit: 2016-07-17 17:14:32 |
|
nonushikhar:
2016-07-06 02:42:28
easy :) loved it .... hint : matrix chain multiplication |
|
sarvesh_19:
2016-06-28 22:23:48
recursion with memo accepted !! AC in 1st attempt. |
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 |