atcoder#DDCC2020QUALB. Iron Bar Cutting
Iron Bar Cutting
Score: points
Problem Statement
Takahashi, who works at DISCO, is standing before an iron bar. The bar has notches, which divide the bar into sections. The -th section from the left has a length of millimeters.
Takahashi wanted to choose a notch and cut the bar at that point into two parts with the same length. However, this may not be possible as is, so he will do the following operations some number of times before he does the cut:
- Choose one section and expand it, increasing its length by millimeter. Doing this operation once costs yen (the currency of Japan).
- Choose one section of length at least millimeters and shrink it, decreasing its length by millimeter. Doing this operation once costs yen.
Find the minimum amount of money needed before cutting the bar into two parts with the same length.
Constraints
- All values in input are integers.
Input
Input is given from Standard Input in the following format:
Output
Print an integer representing the minimum amount of money needed before cutting the bar into two parts with the same length.
3
2 4 3
3
The initial lengths of the sections are (in millimeters). Takahashi can cut the bar equally after doing the following operations for yen:
- Shrink the second section from the left. The lengths of the sections are now .
- Shrink the first section from the left. The lengths of the sections are now .
- Shrink the second section from the left. The lengths of the sections are now , and we can cut the bar at the second notch from the left into two parts of length each.
12
100 104 102 105 103 103 101 105 104 102 104 101
0