Minieye杯 Mex【思维】

传送门

题目描述:给你一个大小为 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;
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值