Kitahara Haruki has bought n apples for Touma Kazusa and Ogiso Setsuna. Now he wants to divide all the apples between the friends.
Each apple weights 100 grams or 200 grams. Of course Kitahara Haruki doesn't want to offend any of his friend. Therefore the total weight of the apples given to Touma Kazusa must be equal to the total weight of the apples given to Ogiso Setsuna.
But unfortunately Kitahara Haruki doesn't have a knife right now, so he cannot split any apple into some parts. Please, tell him: is it possible to divide all the apples in a fair way between his friends?
The first line contains an integer n (1 ≤ n ≤ 100) — the number of apples. The second line contains n integers w1, w2, ..., wn (wi = 100or wi = 200), where wi is the weight of the i-th apple.
In a single line print "YES" (without the quotes) if it is possible to divide all the apples between his friends. Otherwise print "NO" (without the quotes).
3 100 200 100
YES
4 100 100 100 200
NO
In the first test sample Kitahara Haruki can give the first and the last apple to Ogiso Setsuna and the middle apple to Touma Kazusa.
解题说明:此题的意思是平分一组数,由于只有100和200两个数值,简单判断就会发现首先100出现次数为奇数,或者100未出现200出现奇数次的情况下都不符合要求,其余情况均能够实现均分。
- #include<iostream>
- #include<cstdio>
- #include<cmath>
- #include<cstdlib>
- #include <algorithm>
- #include<cstring>
- #include<string>
- using namespace std;
- int main()
- {
- int n, a = 0;
- int i, w;
- scanf("%d", &n);
- for (i = 0; i<n; i++)
- {
- scanf("%d", &w);
- if (w == 100)
- {
- a++;
- }
- }
- if (a % 2 == 1 || (n % 2 == 1 && a == 0))
- {
- printf("NO\n");
- }
- else
- {
- printf("YES\n");
- }
- return 0;
- }