Kockice
의견: 0
\(6^{th}\) round, March \(8^{th}\), 2014
Mirko and Slavko are playing with bricks. Both of them have their own pile of bricks. The piles consist
of N columns (where N is an odd number). The number of bricks in the i^{th} column of Mirko's pile is
labeled with m_{i} and Slavko's pile with s_{i}.
They have decided to create two equal piles constructed in a way that the heights of columns are
strictly descending at first and then strictly ascending (see right image below) and the heights of
adjacent columns differ exactly by 1 (see image). The lowest of the columns must have an equal
number of columns to the left and to the right of it.
The piles can be modified by removing one brick from the top of some column and throw it out the
window (they cannot reuse it) or by taking one brick from the box and place it on the top of some
column (there is an infinite amount of bricks in the box). Removing or placing a brick counts as one
move.
You have to determine the minimal number of moves so that Mirko and Slavko can rearrange their
piles in the described way.
On the left, there is a pile with column heights 3, 2, 0, 1 and 4.
On the right, there is one of the possible final layouts.
In test cases worth 40% of total points, the following will hold: \(1 \le N \le 1\,000\) i \(0 \le m_{i}\), \(s_{i} \le 1\,000\).
The first line of input contains an odd number N. (\(1 \le N \le 300\,000\)), the number of columns in both
piles.
The second line of input contains N integers m_{i} (\(0 \le m_{i} \le 10^{12}\)), column heights in Mirko's pile.
The third line of input contains N integers s_{i} (\(0 \le s_{i} \le 10^{12}\)), column heights in Slavko's pile.
The first and only line of output must contain the minimal number of moves.
3
1 2 3
3 2 235
2 3 0 1 4
3 3 2 3 110Clarification of the first example: Mirko places two bricks on the top the first column in his pile and
Slavko places one brick on the top of the third column in his pile.
평가 및 의견
Kockice
Log in to rate problems.
아직 의견이 없습니다. 자격이 된다면 위 양식에서 가장 먼저 평가해 보세요.
풀이 제출
Kockice