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

poj Yogurt factory (贪心水题)

时间:2014-07-27 11:34:02      阅读:144      评论:0      收藏:0      [点我收藏+]

标签:poj 2393 贪心   algorithm   namespace   poj   

# include <stdio.h>
# include <string.h>
# include <algorithm>
using namespace std;
int main()
{
	int i,n,s;
	__int64 sum ;
	int cost[10010],num[10010];
	while(~scanf("%d%d",&n,&s))
	{
		for(i=0;i<n;i++)
			scanf("%d%d",&cost[i],&num[i]);
	     for(i=0;i<n;i++)
		 {
			 if(i==0)
				 sum=cost[i]*num[i];
			 else
			 {
				 if(cost[i]>cost[i-1]+s)
				 {
					 sum+=(cost[i-1]+s)*num[i];
					 cost[i]=cost[i-1]+s;//更新最省价格
				 }
				 else
				 {
					 sum+=cost[i]*num[i];
				 }
			 }
		 }
		 printf("%I64d\n",sum);
	}
	return 0;
}

poj Yogurt factory (贪心水题)

标签:poj 2393 贪心   algorithm   namespace   poj   

原文地址:http://blog.csdn.net/lp_opai/article/details/38150655

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