Problem F. Game Rooms
时间限制 4000 ms
内存限制 63.9990234375 MB
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 $T_{i}$ table tennis players and $P_{i}$ 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: 0 if an employee is on the same floor as a game room of their desired type, 1 if the nearest game room of the desired type is exactly one floor above or below the employee, and so on.
输入数据
输出数据
For each test case, output one line containing
Case #x: y, where $x$ is the test case number (starting from 1) and $y$ is the minimal sum of distances.
样例输入
样例输出
样例说明
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 5 pool players on the first floor will need to go one floor up, and the 4 table tennis players on the second floor will need to go one floor down. So the total distance is 9.
$ Mathjax font initiator $