热门标签 | HotTags
当前位置:  开发笔记 > 后端 > 正文

CodeforcesGym101234GDreamoonandNightMarket(优先队列,子集和第k大)

题意:求子集和第k大,n,k

题意:

求子集和第k大,n,k<=1e6

思路:

优先队列经典题目,注意优先队列是默认按从大到小排的

代码:

#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include

#define fst first
#define sc second
#define pb push_back
#define mem(a,b) memset(a,b,sizeof(a))
#define lson l,mid,root<<1
#define rson mid+1,r,root<<1|1
#define lc root<<1
#define rc root<<1|1
#define lowbit(x) ((x)&(-x))
using namespace std;
typedef double db;
typedef long double ldb;
typedef long long ll;
typedef unsigned long long ull;
typedef pair PI;
typedef pair PLL;
const db eps = 1e-6;
const int mod = 1e9+7;
const int maxn = 4e5+100;
const int maxm = 4e5+100;
const int inf = 0x3f3f3f3f;
const db pi = acos(-1.0);
int n, k;
ll a[maxn];
priority_queue

,vector

>, greater

> >q;
//priority_queue

, vector

>, greater

> >q;
int main(){
scanf("%d %d", &n, &k);
for(int i = 1; i <= n; i++){
scanf("%lld", &a[i]);
}
sort(a+1,a+1+n);
q.push({a[1],1});
int cnt = 0;

while(cnt auto tmp = q.top();
q.pop();
ll ans = tmp.fst;
int id = tmp.sc;
if(id q.push({ans+a[id+1],id+1});
q.push({ans-a[id]+a[id+1], id+1});
}
cnt++;
if(cnt == k){
printf("%lld\n", ans);
break;
}
}
return 0;
}

 


推荐阅读
author-avatar
mobiledu2502885323
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有