传送门
题目描述:给你一个大小为 n 的数组,问你这个数组里面不能组成的数中,最小的一个是什么?
解释说明:
输入:
3
1 2 5
输出:
4
样例说明:
S'=(), ∑S'=0
S'=(1), ∑S'=1
S'=(2), ∑S'=2
S'=(1,2), ∑S'=3
S'=(5), ∑S'=5
There is no way for ∑S'=4, hence 4 is the answer.
解题思路:
如果目前我们能够构成 [1-10] 的所有数字,再给我们一个 x ,那我们就能够构成 [1-10+x] 的所有数字吗?
答案是:不确定。
如果 x > 11 ,那我们就不能构成 11 这个数字,如果 x ≤ 11,我们就能够构成 [1-10+x] 的所有数字。
所以,我们将数组排序后,然后逐步判断就可以了。
代码:
///https://ac.nowcoder.com/acm/contest/637/K
///#include<bits/stdc++.h>
///#include<unordered_map>
///#include<unordered_set>
#include<iostream>
#include<algorithm>
#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<string>
#include<cmath>
#include<queue>
#include<bitset>
#include<set>
#include<stack>
#include<map>
#include<list>
#include<new>
#include<vector>
#define MT(a, b) memset(a,b,sizeof(a));
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
const double pai = acos(-1.0);
const double E = 2.718281828459;
const int mod = 20071027;
const int INF = 0x3f3f3f3f;
const int maxn = 1e5 + 10;
ll n,num[maxn];
int main(){
cin>>n;
for(int i=1;i<=n;i++) cin>>num[i];
sort(num+1,num+1+n);
ll x=0;
for(int i=1;i<=n;i++){
if(num[i]>x+1) break; ///如果不能构成x+1
x+=num[i]; ///能够构成[1,x+num[i]]的所有元素
}
cout<<x+1<<endl;
}