100672: [AtCoder]ABC067 C - Splitting Pile

Memory Limit:256 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Score : $300$ points

Problem Statement

Snuke and Raccoon have a heap of $N$ cards. The $i$-th card from the top has the integer $a_i$ written on it.

They will share these cards. First, Snuke will take some number of cards from the top of the heap, then Raccoon will take all the remaining cards. Here, both Snuke and Raccoon have to take at least one card.

Let the sum of the integers on Snuke's cards and Raccoon's cards be $x$ and $y$, respectively. They would like to minimize $|x-y|$. Find the minimum possible value of $|x-y|$.

Constraints

  • $2 \leq N \leq 2 \times 10^5$
  • $-10^{9} \leq a_i \leq 10^{9}$
  • $a_i$ is an integer.

Input

Input is given from Standard Input in the following format:

$N$
$a_1$ $a_2$ $...$ $a_{N}$

Output

Print the answer.


Sample Input 1

6
1 2 3 4 5 6

Sample Output 1

1

If Snuke takes four cards from the top, and Raccoon takes the remaining two cards, $x=10$, $y=11$, and thus $|x-y|=1$. This is the minimum possible value.


Sample Input 2

2
10 -10

Sample Output 2

20

Snuke can only take one card from the top, and Raccoon can only take the remaining one card. In this case, $x=10$, $y=-10$, and thus $|x-y|=20$.

Input

题意翻译

小狸和浣熊制作了 $N$ 张卡,并堆积成山。卡片山上第 $i$ 张卡片上写着整数 $a_i$。 小狸和浣熊决定分享 $N$ 张卡。小狸从卡片山上取了几张卡片后,浣熊会把剩下的全部卡片都取出来。此时,无论是小狸还是浣熊都必须取得 $1$ 张以上的卡。 如果小狸和浣熊所持有的卡片上写着的数的总和分别为 $x, y$。求出 $|x - y|$ 中可能值的最小值。

加入题单

算法标签: