1799.Array Division

Time Limit: 1s Memory Limit: 256MB

Vasya has an array a consisting of positive integer numbers. Vasya wants to divide this array into two non-empty consecutive parts (the prefix and the suffix) so that the sum of all elements in the first part equals to the sum of elements in the second part. It is not always possible, so Vasya will move some element before dividing the array (Vasya will erase some element and insert it into an arbitrary position).

Inserting an element in the same position he was erased from is also considered moving.

Can Vasya divide the array after choosing the right element to move and its new position?

Input Format(From the terminal/stdin)

The first line contains single integer n (1 \le n \le 100000) - the size of the array.

The second line contains n integers a1,a2... an (1 \le ai \le 109) - the elements of the array.

Output Format(To the terminal/stdout)

Print YES if Vasya can divide the array after moving one element. Otherwise print NO.

Sample Input 1

Copy
3
1 3 2
 \n
 · · \n

Sample Output 1

Copy
YES
   \n

Sample Input 2

Copy
5
1 2 3 4 5
 \n
 · · · · \n

Sample Output 2

Copy
NO
  \n

Sample Input 3

Copy
5
2 2 3 4 5
 \n
 · · · · \n

Sample Output 3

Copy
YES
   \n

Hints

In the first example Vasya can move the second element to the end of the array.

In the second example no move can make the division possible.

In the third example Vasya can move the fourth element by one position to the left.

Submit

请先 登录

© 2025 FAQs