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

HDU 4572 Bottles Arrangement

时间:2014-05-15 06:28:56      阅读:200      评论:0      收藏:0      [点我收藏+]

标签:style   blog   class   code   c   tar   

详细的证明:点击打开链接

我的想法:

要想保证题目所说 构造最小行的和,只能是这种情况

.....      m-3  m-2  m-1  m    |   m  m-1  m-2  m-3    . .... 

所以Ans 也就是取前N项就可。

又因为 It is guaranteed that N is always odd。  显然构造没问题。


#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <algorithm>

using namespace std;

int main()
{
	int n,m;
	while(~scanf("%d%d",&m,&n))
	{
		int sum=0,k=0;
		for(int i=1;i<=n;i++)
		{
			if(i%2==0)
			{
				sum+=(m-k);
				k++;
			}
			else sum+=(m-k);
		}
		printf("%d\n",sum);
	}
	return 0;
}


HDU 4572 Bottles Arrangement,布布扣,bubuko.com

HDU 4572 Bottles Arrangement

标签:style   blog   class   code   c   tar   

原文地址:http://blog.csdn.net/imutzcy/article/details/25705403

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