In a small but very proud high school it was decided to win ACM ICPC. This goal requires to compose as many teams of three as possible, but since there were only 6 students who wished to participate, the decision was to build exactly two teams.
After practice competition, participant number i got a score of ai. Team score is defined as sum of scores of its participants. High school management is interested if it's possible to build two teams with equal scores. Your task is to answer that question.
The single line contains six integers a1, ..., a6 (0 ≤ ai ≤ 1000) — scores of the participants
Print "YES" (quotes for clarity), if it is possible to build teams with equal score, and "NO" otherwise.
You can print each character either upper- or lowercase ("YeS" and "yes" are valid when the answer is "YES").
1 3 2 1 2 1
YES
1 1 1 1 1 99
NO
In the first sample, first team can be composed of 1st, 2nd and 6th participant, second — of 3rd, 4th and 5th: team scores are1 + 3 + 1 = 2 + 1 + 2 = 5.
In the second sample, score of participant number 6 is too high: his team score will be definitely greater.
【题意】:存在某三个和另外三个相等输出YES,否则输出NO
【分析】:暴力
【代码】:
#include <bits/stdc++.h> using namespace std; const int maxn = 505; int main() { int a[10],sum[50]; memset(sum,0,sizeof(sum)); for(int i=1;i<=6;i++) { cin>>a[i]; if(a[1]+a[2]+a[3]==a[4]+a[5]+a[6]) { printf("YES "); return 0; } if(a[1]+a[2]+a[4]==a[3]+a[5]+a[6]) { printf("YES "); return 0; } if(a[1]+a[2]+a[5]==a[3]+a[4]+a[6]) { printf("YES "); return 0; } if(a[1]+a[2]+a[6]==a[3]+a[4]+a[5]) { printf("YES "); return 0; } if(a[1]+a[3]+a[4]==a[2]+a[5]+a[6]) { printf("YES "); return 0; } if(a[1]+a[3]+a[5]==a[2]+a[4]+a[6]) { printf("YES "); return 0; } if(a[1]+a[3]+a[6]==a[2]+a[4]+a[5]) { printf("YES "); return 0; } if(a[2]+a[3]+a[4]==a[1]+a[5]+a[6]) { printf("YES "); return 0; } if(a[2]+a[3]+a[5]==a[1]+a[4]+a[6]) { printf("YES "); return 0; } if(a[2]+a[3]+a[6]==a[1]+a[4]+a[5]) { printf("YES "); return 0; } } printf("NO "); return 0; }
#include <bits/stdc++.h> using namespace std; #include<cstdlib> #include<cstring> #include<algorithm> #include<cmath> #include<cstdio> #include<iostream> using namespace std; int a[7],sum=0; int main() { for(int i=0;i<6;i++) { cin>>a[i]; sum+=a[i]; } for(int i=0;i<6;i++) { for(int j=i+1;j<6;j++) { for(int k=j+1;k<6;k++) { if(2*(a[i]+a[j]+a[k])==sum) { printf("YES "); return 0; } } } } printf("NO "); }
#include <bits/stdc++.h> using namespace std; int main() { int a[6]; for(int i = 0; i < 6; i++) cin >> a[i]; sort(a, a + 6); do{ if((a[0] + a[1] + a[2]) == (a[3] + a[4] + a[5])){ cout << "YES"; return 0; } }while(next_permutation(a, a + 6)); cout << "NO"; return 0; }