洛谷 P2085 最小函数值
[TOC]
###题目
戳
###思路
首先这些函数全部单带递增,因为a,b,c都是正整数。
我们将全部的函数的x为1时的函数值放入优先度列(小根堆),然后输出并弹出堆顶元素,将该函数的x++再将函数值放入优先队列。
###Code
#include<iostream>
#include<cstdio>
#include<cstring>
#include<string>
#include<queue>
#include<algorithm>
#define MAXN 10001
using namespace std;
int n,m;
int a[MAXN],b[MAXN],c[MAXN];
struct info{
int num,now,w;
bool operator > (const info xx) const{
return w>xx.w;
}
}fff[MAXN];
priority_queue<info,vector<info>,greater<info> > q;
inline int read(){
int x=0;bool f=0;char c=getchar();
while(c<'0'||c>'9'){if(c=='-')f=!f;c=getchar();}
while(c>='0'&&c<='9'){x=x*10+c-'0';c=getchar();}
return f?-x:x;
}
int main(){
n=read(),m=read();
for(int i=1;i<=n;++i){
a[i]=read(),b[i]=read(),c[i]=read();
}
for(int i=1;i<=n;++i){
fff[i].now=1,fff[i].num=i;
fff[i].w=a[i]+b[i]+c[i];
q.push(fff[i]);
}
while(m--){
info temp=q.top();
printf("%d ",temp.w);
q.pop();
temp.now++;
temp.w=(a[temp.num]*temp.now*temp.now)+(b[temp.num]*temp.now)+c[temp.num];
q.push(temp);
}
puts("");
return 0;
}
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步