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

hdu ACM Steps 1.2.4 Box of Bricks

时间:2017-06-11 18:24:31      阅读:128      评论:0      收藏:0      [点我收藏+]

标签:scanf   bottom   printf   eps   main   for   abs   number   round   

模拟题。

题意为把高度不同的砖头堆变成高度相同的砖头堆最少需要移动几次。

想想就知道,要把每个砖头堆变成平均高度砖头堆最少需要移动的块数就是俩者的差值。

把所有差值都加起来以后要除以2,因为移动一块砖头对俩个砖头堆有影响。

#include<cstdio>
#include<cmath>
const int maxn = 100 + 10;

int a[maxn],n,s,h,ans,kase;

int main() {
    while(scanf("%d",&n) && n) {
        s=ans=0;
        for(int i=1;i<=n;i++) {    
            scanf("%d",&a[i]);
            s+=a[i];
        }
        h=s/n;
        for(int i=1;i<=n;i++) ans+=abs(h-a[i]);    
        ans/=2;
        printf("Set #%d\nThe minimum number of moves is %d.\n",++kase,ans);
        printf("\n");
    }    
    return 0;
}

hdu ACM Steps 1.2.4 Box of Bricks

标签:scanf   bottom   printf   eps   main   for   abs   number   round   

原文地址:http://www.cnblogs.com/invoid/p/6985675.html

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