【Educational Codeforces Round 31 B】Japanese Crosswords Strike Back
【链接】 我是链接,点我呀:)
【题意】
【题解】
所有数字的和加上n-1,如果为x则唯一,否则不唯一【代码】
#include <bits/stdc++.h>
using namespace std;
int n,x,tot;
int main(){
#ifdef LOCAL_DEFINE
freopen("rush_in.txt", "r", stdin);
#endif
scanf("%d%d",&n,&x);
for (int i = 1;i <= n;i++){
int x;
scanf("%d",&x);
tot+=x;
}
tot+=n-1;
if (tot==x){
puts("YES");
} else{
puts("NO");
}
return 0;
}