#P13323. [GCJ 2012 #1C] Box Factory
[GCJ 2012 #1C] Box Factory
题目描述
You own a factory with two assembly lines. The first assembly line makes boxes, and the second assembly line makes toys to put in those boxes. Each type of box goes with one type of toy and vice-versa.
At the beginning, you pick up a box from the first assembly line and a toy from the second assembly line. You then have a few options.
- You can always throw out the box and pick up the next one.
- You can always throw out the toy and pick up the next one.
- If the box and toy are the same type, you can put the toy in the box, and send it out to customers.
You always pick boxes up in the order in which they are made, and similarly for toys. You know the order in which boxes and toys are made, and you want to plan out a strategy that will allow you to send as many boxed toys as possible to customers.
Warning: The two assembly lines make a lot of boxes and toys. However, they tend to make one kind of thing for a long period of time before switching.
输入格式
The first line of the input gives the number of test cases, . test cases follow.
Each test case begins with a line containing two integers and . It is followed by a line containing integers , and another line containing integers .
This means that the first assembly line will make boxes of type , then boxes of type , etc., until it finishes with boxes of type . Similarly, the second assembly will make toys of type , followed by toys of type , etc., until it finishes with toys of type .
A toy can be matched with a box if and only if they have the same type number.
输出格式
For each test case, output one line containing "Case #x: y", where is the case number (starting from 1), and is the largest number of boxed toys that you can send out to customers.
4
3 3
10 1 20 2 25 3
10 2 30 3 20 1
3 5
10 1 6 2 10 1
5 1 3 2 10 1 3 2 5 1
3 5
10 1 6 2 10 1
5 1 6 2 10 1 6 2 5 1
1 1
5000000 10
5000000 100
Case #1: 35
Case #2: 20
Case #3: 21
Case #4: 0
提示
Limits
Test set 1 (12 Pts, Visible Verdict)
Test set 2 (23 Pts, Hidden Verdict)