#Lutece1225. Game Rooms
Game Rooms
Migrated from Lutece 1225 Game Rooms
All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.
Description
Your company has just constructed a new skyscraper, but you just noticed a terrible problem: there is only space to put one game room on each floor! The game rooms have not been furnished yet, so you can still decide which ones should be for table tennis and which ones should be for pool. There must be at least one game room of each type in the building.
Luckily, you know who will work where in this building (everyone has picked out offices). You know that there will be table tennis players and pool players on each floor. Our goal is to minimize the sum of distances for each employee to their nearest game room. The distance is the difference in floor numbers: if an employee is on the same floor as a game room of their desired type, if the nearest game room of the desired type is exactly one floor above or below the employee, and so on.
Input
The first line of the input gives the number of test cases, (). test cases follow. Each test case begins with one line with an integer (), the number of floors in the building. lines follow, each consists of integers, and (), the number of table tennis and pool players on the - th floor. The lines are given in increasing order of floor number, starting with floor and going upward.
Output
For each test case, output one line containing Case #x: y
, where is the test case number (starting from ) and is the minimal sum of distances.
Samples
1
2
10 5
4 3
Case #1: 9
Note
In the first case, you can build a table tennis game room on the first floor and a pool game room on the second floor. In this case, the pool players on the first floor will need to go one floor up, and the table tennis players on the second floor will need to go one floor down. So the total distance is .
Resources
The 2015 China Collegiate Programming Contest