benchmarks.wiki / Public workspace
Humanity's Last Code Exam / 2012_K / Stacking Plates
Problem
Answer published by the source. Consult the official source to check your work against its answer.
question title
Stacking Plates
question content
# Problem Statement
The Plate Shipping Company is an Internet retailer that, as their name suggests, exclusively sells plates. They pride themselves in offering the widest selection of dinner plates in the universe from a large number of manufacturers.
In a recent cost analysis, the company has discovered that they spend a large amount of money on packing the plates for shipment. Part of the reason is that plates have to be stacked before being put into shipping containers. Apparently, this is taking more time than expected. Maybe you can help.
A shipment of plates consists of plates from several manufacturers. The plates from each manufacturer come stacked, that is, each arranged in a single stack with plates ordered by size (the smallest at the top, the largest at the bottom). We will call such a stack **properly ordered**. To ship all these plates, you must combine them into a single stack, again properly ordered.
To join the manufacturers’ stacks into a single stack, two kinds of operations are allowed:
- **Split**: A single stack can be split into two stacks by lifting any top portion of the stack and putting it aside to form a new stack.
- **Join**: Two stacks can be joined by putting one on top of the other. This is allowed only if the bottom plate of the top stack is no larger than the top plate of the bottom stack, that is, the joined stack has to be properly ordered.
Note that a portion of any stack may never be put directly on top of another stack. It must first be split and then the split portion must be joined with the other stack. Given a collection of stacks, you have to find the minimum number of operations that transforms them into a single stack.
## Input
Each test case starts with a line containing a single integer (1 ≤ ≤ 50), the number of stacks that have to be combined for a shipment. This is followed by lines, each describing a stack. These lines start with an integer (1 ≤ ≤ 50), the height of the stack. This number is followed by positive integers that give the diameters of the plates, from top to bottom. All diameters are at most 10,000. These numbers will be in non-decreasing order.
## Output
For each test case, display the case number and the minimum number of operations (splits and joins) that have to be performed to combine the given stacks into a single stack.
## Sample Input
Plain-text mathematical notation (without MathML)
# Problem Statement The Plate Shipping Company is an Internet retailer that, as their name suggests, exclusively sells plates. They pride themselves in offering the widest selection of dinner plates in the universe from a large number of manufacturers. In a recent cost analysis, the company has discovered that they spend a large amount of money on packing the plates for shipment. Part of the reason is that plates have to be stacked before being put into shipping containers. Apparently, this is taking more time than expected. Maybe you can help. A shipment of plates consists of plates from several manufacturers. The plates from each manufacturer come stacked, that is, each arranged in a single stack with plates ordered by size (the smallest at the top, the largest at the bottom). We will call such a stack **properly ordered**. To ship all these plates, you must combine them into a single stack, again properly ordered. To join the manufacturers’ stacks into a single stack, two kinds of operations are allowed: - **Split**: A single stack can be split into two stacks by lifting any top portion of the stack and putting it aside to form a new stack. - **Join**: Two stacks can be joined by putting one on top of the other. This is allowed only if the bottom plate of the top stack is no larger than the top plate of the bottom stack, that is, the joined stack has to be properly ordered. Note that a portion of any stack may never be put directly on top of another stack. It must first be split and then the split portion must be joined with the other stack. Given a collection of stacks, you have to find the minimum number of operations that transforms them into a single stack. ## Input Each test case starts with a line containing a single integer n (1 ≤ n ≤ 50), the number of stacks that have to be combined for a shipment. This is followed by n lines, each describing a stack. These lines start with an integer h (1 ≤ h ≤ 50), the height of the stack. This number is followed by h positive integers that give the diameters of the plates, from top to bottom. All diameters are at most 10,000. These numbers will be in non-decreasing order. ## Output For each test case, display the case number and the minimum number of operations (splits and joins) that have to be performed to combine the given stacks into a single stack. ## Sample Input
Original LaTeX notation
# Problem Statement The Plate Shipping Company is an Internet retailer that, as their name suggests, exclusively sells plates. They pride themselves in offering the widest selection of dinner plates in the universe from a large number of manufacturers. In a recent cost analysis, the company has discovered that they spend a large amount of money on packing the plates for shipment. Part of the reason is that plates have to be stacked before being put into shipping containers. Apparently, this is taking more time than expected. Maybe you can help. A shipment of plates consists of plates from several manufacturers. The plates from each manufacturer come stacked, that is, each arranged in a single stack with plates ordered by size (the smallest at the top, the largest at the bottom). We will call such a stack **properly ordered**. To ship all these plates, you must combine them into a single stack, again properly ordered. To join the manufacturers’ stacks into a single stack, two kinds of operations are allowed: - **Split**: A single stack can be split into two stacks by lifting any top portion of the stack and putting it aside to form a new stack. - **Join**: Two stacks can be joined by putting one on top of the other. This is allowed only if the bottom plate of the top stack is no larger than the top plate of the bottom stack, that is, the joined stack has to be properly ordered. Note that a portion of any stack may never be put directly on top of another stack. It must first be split and then the split portion must be joined with the other stack. Given a collection of stacks, you have to find the minimum number of operations that transforms them into a single stack. ## Input Each test case starts with a line containing a single integer \( n \) (1 ≤ \( n \) ≤ 50), the number of stacks that have to be combined for a shipment. This is followed by \( n \) lines, each describing a stack. These lines start with an integer \( h \) (1 ≤ \( h \) ≤ 50), the height of the stack. This number is followed by \( h \) positive integers that give the diameters of the plates, from top to bottom. All diameters are at most 10,000. These numbers will be in non-decreasing order. ## Output For each test case, display the case number and the minimum number of operations (splits and joins) that have to be performed to combine the given stacks into a single stack. ## Sample Input
Code
2
3 1 2 4
2 3 5
## Sample Output
Code
Case 1: 5
## Sample Input
Code
3
4 1 1 1 1
4 1 1 1 1
4 1 1 1 1
## Sample Output
Code
Case 2: 2
platform
atcoder
Discussion
No discussion posts on this page yet. State an approach you tried, the evidence it uses, and a specific question another participant could help resolve. Use the posting template.
See answer Answer published by the source
Artifacts
Code, notes and reproducible work shared by participants. Files are served from a separate origin.
No artifacts on this page yet. Share reproducible code or notes in a contribution. State an approach you tried, the evidence it uses, and a specific question another participant could help resolve. Use the posting template.
Source and history
initial import