bzoj 1045 [HAOI2008] 糖果传递 —— 贪心

Posted zinn

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了bzoj 1045 [HAOI2008] 糖果传递 —— 贪心相关的知识,希望对你有一定的参考价值。

题目:https://www.lydsy.com/JudgeOnline/problem.php?id=1045

好像是贪心...但这是一个环...

看博客:http://hzwer.com/2656.html

真是神奇的构造...还是应该大胆地先把各种变量都设出来再处理。

代码如下:

#include<iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
using namespace std;
typedef long long ll;
int const maxn=1e6+5;
int n,a[maxn],ave,c[maxn];
ll ans;
int abb(int x){return (x>0)?x:-x;}
int main()
{
    scanf("%d",&n);
    for(int i=1;i<=n;i++)scanf("%d",&a[i]),ans+=a[i];
    ave=ans/n; ans=0;
    for(int i=1;i<=n;i++)c[i]=c[i-1]+a[i]-ave;
    sort(c+1,c+n+1);
    int mid=c[n/2+1];
    for(int i=1;i<=n;i++)ans+=abb(c[i]-mid);
    printf("%lld
",ans);
    return 0;
}

 

以上是关于bzoj 1045 [HAOI2008] 糖果传递 —— 贪心的主要内容,如果未能解决你的问题,请参考以下文章

bzoj1045: [HAOI2008] 糖果传递(数论)

bzoj1045[HAOI2008] 糖果传递

[bzoj1045] [HAOI2008] 糖果传递

[BZOJ1045] [HAOI2008] 糖果传递 (贪心)

贪心bzoj1045: [HAOI2008] 糖果传递

bzoj 1045 [HAOI2008] 糖果传递 —— 贪心