0 人解决,4 人已尝试。
0 份提交通过,共有 6 份提交。
9.9 EMB 奖励。
单点时限: 2.0 sec
内存限制: 256 MB
You need to hire some people to paint a fence. The fence is composed of 10000 contiguous sections, numbered from 1 to 10000.
You get some offers from painters to help paint the fence. Each painter offers to paint a contiguous subset of fence sections in a particular color. You need to accept a set of the offers, such that:
If it is possible to satisfy these two requirements, find the minimum number of offers that you must accept.
One line containing an integer T(1 ≤ T ≤ 50), the number of test cases in the input file.
For each test case, there will be:
T lines, one for each test case in the order they occur in the input file, each containing the string “Case #X: Y”, where X is the case number, and Y is the number of offers that need to be accepted, or “Case #X: IMPOSSIBLE” if there is no acceptable set of offers.
5 2 BLUE 1 5000 RED 5001 10000 3 BLUE 1 6000 RED 2000 8000 WHITE 7000 10000 4 BLUE 1 3000 RED 2000 5000 ORANGE 4000 8000 GREEN 7000 10000 2 BLUE 1 4000 RED 4002 10000 3 BLUE 1 6000 RED 4000 10000 ORANGE 3000 8000
Case #1: 2 Case #2: 3 Case #3: IMPOSSIBLE Case #4: IMPOSSIBLE Case #5: 2 Hint: In the first test case, accepting both offers will exactly paint the whole fence, 5000 sections each, with no overlap. In the second case, the painters will overlap, which is acceptable. In the third case, accepting all four offers would cover the whole fence, but it would use 4 different colours, so this is not acceptable. In the fourth case, section 4001 cannot be painted. In the fifth case, we can accept just the first and second offer and successfully paint the fence.
0 人解决,4 人已尝试。
0 份提交通过,共有 6 份提交。
9.9 EMB 奖励。