Cows so hate the dark. In order to change a lightbulb at the top
of the barn, Bessie must build a tower out of bales of hay to climb
so that she can reach it. The N (1 <= N <= 100,000) bales of hay
(conveniently numbered 1..N) enter the barn sequentially on a
conveyor belt. Bale i has integer width w_i (1 <= w_i <= 10,000);
all bales have depth and height of one unit.
Bessie must use all N hay bales to build the tower and must lay
them down in the order they arrive. She can lay as many bales as
she wishes (tightly packed in a line, of course) to create the
foundation of the tower. She can then lay some of the next bales
on top of the previous level to create the next level (no level can
be wider than the level beneath it). She continues this process
until all the bales are used. She must stack the bales in the order
they arrive, from the bottom to the top of the tower. To be clear:
she must not try to sneak a bale back on the foundation after a
bale is placed on the second layer.
Bessie's goal is to create the tallest tower possible -- and she
already knows how wide each every bale of hay will be as it comes
into the barn on the belt. How tall a tower can she construct?
There are multiple test cases in the input file.
For each test case, first line contains an integer N, then the next N lines contains each w_i.
For each test case, output a single integer, the height of the tallest possible tower that can be built.
3 1 2 3 3 1 2 3
2 2
Use the first bales with width 1 and 2 for the bottom row (total
width: 3), then the next bale (width 3) for the top row:
+----------+
| 3 |
+---+------+
| 1 | 2 |
+---+------+
Migrated from old NTUJ.
USACO'09 OPEN
No. | Testdata Range | Score |
---|