记录编号 |
268502 |
评测结果 |
AAAAAAAAAA |
题目名称 |
[HZOI 2016]最小函数值 |
最终得分 |
100 |
用户昵称 |
AntiLeaf |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.472 s |
提交时间 |
2016-06-12 16:04:44 |
内存使用 |
10.56 MiB |
显示代码纯文本
#include<cstdio>
#include<cstring>
#include<cmath>
#include<algorithm>
#include<queue>
using namespace std;
namespace mine{
int __c,__x,__a[110],__i,__j;
bool __neg;
inline int getint(){
__x=__neg=0;
do __c=getchar();while(__c==' '||__c=='\n'||__c=='\r'||__c=='\t');
if(__c=='-'){
__neg=true;
__c=getchar();
}
for(;__c>='0'&&__c<='9';__c=getchar())__x=(__x<<1)+(__x<<3)+(__c^48);
if(__neg)return -__x;
return __x;
}
inline void putint(int __x){
__neg=__x<0;
if(__neg)__x=-__x;
__i=0;
do{
__a[__i++]=__x%10+48;
__x/=10;
}while(__x);
if(__neg)putchar('-');
for(__j=__i-1;__j>=0;__j--)putchar(__a[__j]);
}
}
using namespace mine;
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);
n=getint();
m=getint();
for(int i=1;i<=n;i++){
a[i]=getint();
b[i]=getint();
c[i]=getint();
heap[++len]=node(f(i,1),1,i);
}
make_heap(heap+1,heap+len+1);
while(m--){
node b=pop();
putint(b.data);
putchar(' ');
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;
}