码迷,mamicode.com
首页 > 其他好文 > 详细

Codeforces 854C Planning(贪心+堆)

时间:2017-09-07 14:56:06      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:pos   closed   sed   get   read   space   operator   ann   fine   

  贪心:让代价大的尽量移到靠前的位置。

  做法:先让前k个数加进堆里,枚举k+1~n+k,每次把新元素加进堆后找到最大代价放在当前位置即可。

技术分享
#include<bits/stdc++.h>
#define ll long long
using namespace std;
const int maxn=500010;
struct poi{int c,pos;};
priority_queue<poi>q;
bool operator<(poi a,poi b){return a.c<b.c;}
int n,k;
int a[maxn],ansi[maxn];
ll ans;
void read(int &k)
{
    int f=1;k=0;char c=getchar();
    while(c<0||c>9)c==-&&(f=-1),c=getchar();
    while(c<=9&&c>=0)k=k*10+c-0,c=getchar();
    k*=f;
}
int main()
{
    read(n);read(k);
    for(int i=1;i<=n;i++)read(a[i]);
    for(int i=1;i<=k;i++)q.push((poi){a[i],i});
    for(int i=k+1;i<=n+k;i++)
    {
        if(i<=n)q.push((poi){a[i],i});
        poi t=q.top();q.pop();
        ans+=1ll*t.c*(i-t.pos);
        ansi[t.pos]=i;
    }
    printf("%I64d\n",ans);
    for(int i=1;i<=n;i++)printf("%d ",ansi[i]);
}
View Code

 

Codeforces 854C Planning(贪心+堆)

标签:pos   closed   sed   get   read   space   operator   ann   fine   

原文地址:http://www.cnblogs.com/Sakits/p/7489309.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!