博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
bzoj 1045 糖果传递
阅读量:5055 次
发布时间:2019-06-12

本文共 1276 字,大约阅读时间需要 4 分钟。

题目大意:

把noip均分纸牌变成了环

思路:

基本与均分纸牌相同

但是需要考虑的是起点的选择

首先我们可以设i个人开始有ai个糖

然后设第i个人给前一个人的糖果数为gi

则a[i]-g[i]+g[i+1]=avg;avg为最终每个人的糖果数即平均值

得到最终答案为所有abs(g[i])

设p数组表示a1+...+a[i]-i*avg  则

a[1]-g[1]+g[2]=avg→g[2]=avg-a[1]+g[1] =g[1]-p[1]

a[2]-g[2]+g[3]=avg→g[3]=avg-a[2]+g[2]=2avg-a[1]-a[2]+g[1]=g[1]-p[2]

以此类推

所以ans=abs(g[1])+abs(g[1]-p[1])+abs(g[1]-p[2])+...+abs(g[1]-p[n-1])

由于p数组是确定的

因此我们需要找到在数轴上到各个p数组的点距离最短的点

而这个数就是这些数的中位数

 

1 #include
2 #include
3 #include
4 #include
5 #include
6 #include
7 #include
8 #include
9 #define ll long long 10 #define MAXN 1010101011 #define inf 2147483611 12 using namespace std; 13 ll read() 14 { 15 ll x=0,f=1; 16 char ch=getchar(); 17 while(ch<'0'||ch>'9'){ if(ch=='-') f=-1;ch=getchar();} 18 while(ch>='0'&&ch<='9'){x=x*10+ch-'0';ch=getchar();} 19 return x*f; 20 }21 int a[MAXN],p[MAXN];22 ll ans,k,n,avg;23 int main()24 {25 n=read();26 for(int i=1;i<=n;i++) {a[i]=read();avg+=a[i];}27 avg/=n;28 for(int i=2;i<=n;i++) p[i]=p[i-1]-avg+a[i];29 sort(p+1,p+n+1);30 k=p[(n>>1)+1];31 for(int i=1;i<=n;i++) ans+=abs(k-p[i]);32 printf("%lld",ans);33 }
View Code

 

转载于:https://www.cnblogs.com/yyc-jack-0920/p/7615909.html

你可能感兴趣的文章
PHP如何关闭notice级别的错误提示
查看>>
for,forEach,for in ,for of,$.each和$().each应用
查看>>
随机生成四则运算2
查看>>
Googl地图找房总结
查看>>
从一台SQL SERVER 2008连接另外一台SQL SERVER报错。消息 18456,级别 14,状态 1,第 1 行...
查看>>
CentOS 7最小化安装后找不到‘ifconfig’命令——修复小提示(转)
查看>>
[Python + Unit Testing] Write Your First Python Unit Test with pytest
查看>>
[Docker] Install Docker on Windows (hp) and start with Kitematic
查看>>
Linq步步为营系列/WCF/SilverLight等
查看>>
Python基础学习
查看>>
【Maven】聚合
查看>>
【consul】使用学习
查看>>
第三方平台开发基本总结
查看>>
git push时报“The project you were looking for could not be found.”
查看>>
C#绘制渐变线条
查看>>
LA 4094 WonderTeam 构造
查看>>
spring bean加载过程
查看>>
JAVA设计模式 之 观察者模式
查看>>
第1章 游戏之乐——一摞烙饼的排序
查看>>
未能加载文件或程序集“System.EnterpriseServices.Wrapper.dll”在windows7 64位中的问题解决...
查看>>