本文主要是介绍Gym--Key to Success(思维),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
题目链接:http://codeforces.com/gym/100623/attachments
题意:给你n个数,数字可随意进行相加组合,让你添加m个数,使得不能组合出的数字尽可能大。
题解:首先必须要有1,然后再向后加,1+2+....+n=(1+n)*n/2,则不能组合出的最小的数一定是(1+n)*n/2+1,则用变量sum统计前缀和,若下一个数字大于ans+1,则缺少ans+1,直接输出即可。
#include<stdio.h>
#include <algorithm>
#include<iostream>
#include<string.h>
#include<vector>
#include<stdlib.h>
#include<math.h>
#include<queue>
#include<deque>
#include<ctype.h>
#include<map>
#include<set>
#include<stack>
#include<string>
#include<algorithm>
#define INF 0x3f3f3f3f
#define FAST_IO ios::sync_with_stdio(false)
const double PI = acos(-1.0);
const double eps = 1e-6;
const int MAX=1e5+10;
const int mod=1e9+7;
typedef long long ll;
using namespace std;
#define gcd(a,b) __gcd(a,b)
inline ll lcm(ll a,ll b){return a/gcd(a,b)*b;}
inline ll qpow(ll a,ll b){ll r=1,t=a; while(b){if(b&1)r=(r*t)%mod;b>>=1;t=(t*t)%mod;}return r;}
inline ll inv1(ll b){return qpow(b,mod-2);}
inline ll exgcd(ll a,ll b,ll &x,ll &y){if(!b){x=1;y=0;return a;}ll r=exgcd(b,a%b,y,x);y-=(a/b)*x;return r;}
inline ll read(){ll x=0,f=1;char c=getchar();for(;!isdigit(c);c=getchar()) if(c=='-') f=-1;for(;isdigit(c);c=getchar()) x=x*10+c-'0';return x*f;}ll a[50];
int main ()
{freopen("key.in", "r", stdin);freopen("key.out", "w", stdout);int n,m;cin>>n>>m;for(int i=0;i<n;i++)scanf("%lld",&a[i]);sort(a,a+n);int indx=0;ll sum=0;while(m){if(indx>=n || sum+1<a[indx]){printf("%lld ",sum+1);sum+=(sum+1);m--;}elsesum+=a[indx++];}fclose(stdin);fclose(stdout);return 0;
}
这篇关于Gym--Key to Success(思维)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!