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

codeforces-2

时间:2019-04-11 01:35:02      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:题目   hoc   class   min   贪心算法   ram   pretty   stream   ret   

B.chocolates

#include<iostream>
#include<algorithm>
#include<string.h>
long long b[200010];
long long x=1000000000+1;
using namespace std;
int main()
{
	int n;
	cin>>n;
	for(int i=1;i<=n;i++)
	scanf("%d",&b[i]);
	long long ans=0;
	for(int i=n;i;i--)
	{
		x=min(b[i],x-1);
		if(x>0) ans+=x;
	}
	cout<<ans<<endl;
	return 0;
 }
每次的题目要求一定要看,看它的一个数据范围,一定要重视!!
第二这里面用了贪心算法

codeforces-2

标签:题目   hoc   class   min   贪心算法   ram   pretty   stream   ret   

原文地址:https://www.cnblogs.com/WABoom/p/10686962.html

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