其他分享
首页 > 其他分享> > codeforces-2

codeforces-2

作者:互联网

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;
 }
每次的题目要求一定要看,看它的一个数据范围,一定要重视!!
第二这里面用了贪心算法

标签:cout,int,1000000000,codeforces,long,200010,include
来源: https://www.cnblogs.com/WABoom/p/10686962.html