Codeforeces Gym - 101234G Dreamoon and NightMarket [想法]

题意:给你一个数列,求所有组合的第k小。

题解:首先肯定是排序,由于k只有10^6,我们可以依次找最小。如何找最小呢?我们定义一个节点是数的总和与最大数的位置,每一个最小值能得到两种数,假设当前为(w,i),那它可以得到两个数,w+a[i+1]与w+a[i+1]-a[i]。然后通过优先队列依次取出最小值,直到第k个。(multiset会Tle)

AC代码:

#include<stdio.h>
#include<queue>
#include<algorithm>
using namespace std;
typedef long long ll;
struct node
{
	ll w,pos;
	node(){}
	node(ll w,ll pos)
	{
		this->w=w;
		this->pos=pos;
	}
};
inline char nc(){  
    static char buf[100000],*p1=buf,*p2=buf;  
    return p1==p2&&(p2=(p1=buf)+fread(buf,1,100000,stdin),p1==p2)?EOF:*p1++;  
}  
inline int _read(){  
    char ch=nc();int sum=0;  
    while(!(ch>='0'&&ch<='9'))ch=nc();  
    while(ch>='0'&&ch<='9')sum=sum*10+ch-48,ch=nc();  
    return sum;  
}  

priority_queue<node>st;
bool operator<(node a,node b)
{
	return a.w>b.w;
}
ll a[200005];
int main()
{
	ll n,m;
	n=_read();
	m=_read();
	//scanf("%lld%lld",&n,&m);
	for(ll i=0;i<n;i++)a[i]=_read();
		//scanf("%lld",&a[i]);
	sort(a,a+n);
	st.push(node(a[0],0));
	for(ll i=0;i<m;i++)
	{
		if(i==m-1)
		{
			printf("%lld\n",st.top().w);
			return 0;
		}
		node k=st.top();
		st.pop();
		if(k.pos>=n-1)continue;
		st.push(node(k.w+a[k.pos+1],k.pos+1));
		st.push(node(k.w+a[k.pos+1]-a[k.pos],k.pos+1));
	}
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值