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\n",ans);
    return 0;
}

猜你喜欢

转载自www.cnblogs.com/Zinn/p/9395138.html