记录编号 268391 评测结果 AAAAAAAAAA
题目名称 [HZOI 2016]最小函数值 最终得分 100
用户昵称 GravatarHzoi_ 是否通过 通过
代码语言 C++ 运行时间 1.129 s
提交时间 2016-06-12 14:58:25 内存使用 13.08 MiB
显示代码纯文本
#include<cstdio>
#include<cstring>
#include<cmath>
#include<algorithm>
#include<queue>
using namespace std;
const int maxn=500100;
struct node{
	int data,x,num;
	node(int data=0,int x=0,int num=0):data(data),x(x),num(num){}
	bool operator<(const node& x)const{
		return data>x.data;
	}
};
int f(int,int);
void push(const node&);
node& top();
node pop();
int n,m,a[maxn],b[maxn],c[maxn];
node heap[maxn];
int cnt=0,len=0;//别忘了(x对)=-b/a,虽然abc均为正整数没什么卵用= =
int main(){
	freopen("minval.in","r",stdin);
	freopen("minval.out","w",stdout);
	scanf("%d%d",&n,&m);
	for(int i=1;i<=n;i++){
		scanf("%d%d%d",&a[i],&b[i],&c[i]);
		heap[++len]=node(f(i,1),1,i);
	}
	make_heap(heap+1,heap+len+1);
	for(;cnt<m;cnt++){
		node b=pop();
		printf("%d ",b.data);
		push(node(f(b.num,b.x+1),b.x+1,b.num));
	}
	fclose(stdin);
	fclose(stdout);
	return 0;
}
inline int f(int i,int x){
	return a[i]*x*x+b[i]*x+c[i];
}
inline void push(const node& x){
	heap[++len]=x;
	push_heap(heap+1,heap+len+1);
}
inline node& top(){
	return heap[1];
}
inline node pop(){
	node x=heap[1];
	pop_heap(heap+1,heap+len+1);
	len--;
	return x;
}
/*
3 10
4 5 3
3 4 5
1 7 1
Answer:
9 12 12 19 25 29 31 44 45 54
*/