Datasets:

Modalities:
Image
Text
Formats:
parquet
Size:
< 1K
Tags:
code
Libraries:
Datasets
pandas
License:
File size: 2,777 Bytes
7acee6b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
Wilson works for a moving company. His primary duty is to load household items
into a moving truck. Wilson has a bag that he uses to move these items. He
puts a bunch of items in the bag, moves them to the truck, and then drops the
items off.

Wilson has a bit of a reputation as a lazy worker. Julie is Wilson's
supervisor, and she's keen to make sure that he doesn't slack off. She wants
Wilson to carry at least 50 pounds of items in his bag every time he goes to
the truck.

Luckily for Wilson, his bag is opaque. When he carries a bagful of items,
Julie can tell how many items are in the bag (based on the height of the stack
in the bag), and she can tell the weight of the top item. She can't, however,
tell how much the other items in the bag weigh. She assumes that every item in
the bag weighs at least as much as this top item, because surely Wilson, as
lazy as he is, would at least not be so dense as to put heavier items on top
of lighter ones. Alas, Julie is woefully ignorant of the extent of Wilson's
lack of dedication to his duty, and this assumption is frequently incorrect.

Today there are **N** items to be moved, and Wilson, paid by the hour as he
is, wants to maximize the number of trips he makes to move all of them to the
truck. What is the maximum number of trips Wilson can make without getting
berated by Julie?

Note that Julie is not aware of what items are to be moved today, and she is
not keeping track of what Wilson has already moved when she examines each bag
of items. She simply assumes that each bagful contains a total weight of at
least **k** * **w** where **k** is the number of items in the bag, and **w**
is the weight of the top item.

### Input

Input begins with an integer **T**, the number of days Wilson "works" at his
job. For each day, there is first a line containing the integer **N**. Then
there are **N** lines, the **i**th of which contains a single integer, the
weight of the **i**th item, **Wi**.

### Output

For the **i**th day, print a line containing "Case #**i**: " followed by the
maximum number of trips Wilson can take that day.

### Constraints

1 ≤ **T** ≤ 500  
1 ≤ **N** ≤ 100  
1 ≤ **Wi** ≤ 100  

On every day, it is guaranteed that the total weight of all of the items is at
least 50 pounds.

### Explanation of Sample

In the first case, Wilson can make two trips by stacking a 30-pound item on
top of a 1-pound item, making the bag appear to contain 60 pounds.

In the second case, Wilson needs to put all the items in the bag at once and
can only make one trip.

In the third case, one possible solution is to put the items with odd weight
in the bag for the first trip, and then the items with even weight in the bag
for the second trip, making sure to put the heaviest item on top.