#P13293. [GCJ 2013 #1C] The Great Wall
[GCJ 2013 #1C] The Great Wall
题目描述
You are studying the history of the Great Wall of China, which was built by the Chinese to protect against military incursions from the North. For the purposes of this problem, the Great Wall stretches from infinity in the East to minus infinity in the West. As this is a lot of distance to cover, the Great Wall was not built at once. Instead, for this problem we assume that the builder used a reactive strategy: whenever a part of the border was attacked successfully, the Wall on this part of the border would be raised to the height sufficient to stop an identical attack in the future.
The north border of China was frequently attacked by nomadic tribes. For the purposes of this problem, we assume that each tribe attacks the border on some interval with some strength . In order to repel the attack, the Wall must have height all along the defended interval. If even a short stretch of the Wall is lower than needed, the attack will breach the Wall at this point and succeed. Note that even a successful attack does not damage the Wall. After the attack, every attacked fragment of the Wall that was lower than is raised to height — in other words, the Wall is increased in the minimal way that would have stopped the attack. Note that if two or more attacks happened on the exact same day, the Wall was raised only after they all resolved, and is raised in the minimum way that would stop all of them.
Since nomadic tribes are nomadic, they did not necessarily restrict themselves to a single attack. Instead, they tended to move (either to the East or to the West), and periodically attack the Wall. To simplify the problem, we assume they moved with constant speed and attacked the Wall at constant intervals; moreover we assume that the strength with which a given tribe attacked the Wall changed by a constant amount after each attack (either decreased from attrition, or grew from experience).
Assuming that initially (in 250 BC) the Wall was nonexistent (i.e., of height zero everywhere), and given the full description of all the nomadic tribes that attacked the Wall, determine how many of the attacks were successful.
输入格式
The first line of the input gives the number of test cases, . test cases follow. Each test case begins with a line containing a single integer : the number of the tribes attacking the Wall. lines follow, each describing one tribe. The th line contains eight integers , , , , , , and separated by spaces, describing a single nomadic tribe:
- – the day of the tribe's first attack (where 1st January, 250BC, is considered day 0)
- – the number of attacks from this tribe
- , – the westmost and eastmost points respectively of the Wall attacked on the first attack
- – the strength of the first attack
- – the number of days between subsequent attacks by this tribe
- – the distance this tribe travels to the east between subsequent attacks (if this is negative, the tribe travels to the west)
- – the change in strength between subsequent attacks
输出格式
For each test case, output one line containing "Case #x: y", where is the case number (starting from 1) and is the number of attacks that succeed.
2
2
0 3 0 2 10 2 3 -2
10 3 2 3 8 7 2 0
3
1 2 0 5 10 2 8 0
0 3 0 1 7 1 2 2
3 3 0 5 1 1 4 0
Case #1: 5
Case #2: 6
提示
Sample Explanation
In the first case, the first tribe attacks three times: on day it hits the interval at height , on day it hits at height and on day it hits at height ; all three attacks succeed. Then the second tribe attacks three times, each time at height - on day it hits (this succeeds, for example at position , where the Wall has still height ), on day it hits (this fails, the Wall is already of height in the interval , which covers ), and on day it hits (this succeeds, as the Wall there was of height ).
In the second case there are three tribes, and their attacks intermingle. The sequence is as follows:
- On day , Tribe attacks at height and succeeds.
- On day , Tribe attacks at height , and Tribe attacks at height . Both attacks succeed (as they were simultaneous, the Wall built after the attack of the first tribe isn't there in time to stop the second tribe).
- On day , Tribe attacks at height and succeeds (the Wall there was at height ).
- On day , Tribe attacks at height and succeeds. Simultaneously, Tribe attacks at height and fails (there's a Wall of heights and there).
- On day Tribe attacks at height and succeeds (there was no Wall between and ).
- Finally, on day Tribe attacks at height and fails (since a Wall of height is there).
Limits
- .
- .
- .
- $d_i + (n_i - 1) \times \text{delta\_d}_i \leq 676060$.
- .
- .
- .
Small dataset (9 Pts, Test set 1 - Visible)
- .
- .
- .
- .
Large dataset (28 Pts, Test set 2 - Hidden)
- .
- .
- .
- .