Balancer - CodeForces 440B

B. Balancer
time limit per test
0.5 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

Petya has k matches, placed in n matchboxes lying in a line from left to right. We know that k is divisible by n. Petya wants all boxes to have the same number of matches inside. For that, he can move a match from its box to the adjacent one in one move. How many such moves does he need to achieve the desired configuration?

Input

The first line contains integer n (1 ≤ n ≤ 50000). The second line contains n non-negative numbers that do not exceed 109, the i-th written number is the number of matches in the i-th matchbox. It is guaranteed that the total number of matches is divisible by n.

Output

Print the total minimum number of moves.

Sample test(s)
input
6
1 6 2 5 3 7
output
12

题意:移动火柴使得每堆数量相同。

AC代码如下:

#include<cstdio>
#include<cstring>
#include<iostream>
#include<algorithm>
#include<cmath>
using namespace std;
long long num[50010];
int main()
{ int n,i,j;
  long long sum,ans,k;
  scanf("%d",&n);
  sum=0;ans=0;
  for(i=1;i<=n;i++)
  { scanf("%I64d",&num[i]);
    sum+=num[i];
  }
  sum=sum/n;
  for(i=1;i<=n;i++)
  { if(num[i]==sum)
     continue;
    else if(num[i]>sum)
    { k=num[i]-sum;
      ans+=k;
      num[i+1]+=k;
    }
    else if(num[i]<sum)
    { k=sum-num[i];
      ans+=k;
      num[i+1]-=k;
    }
  }
  printf("%I64d\n",ans);
}



  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值