1139 B. Chocolates bymrhao61 vector<int>a可以直接传入long long int ,long long 很重要

解决一道算法题目,关于如何在特定条件下购买最多数量的巧克力。通过逆序遍历并使用long long int类型来避免溢出,确保正确计算。

这道题告诉我们long long 真的很重要

#include<iostream>
#include<vector>
using namespace std;
int main()
{
	long long int ans=0,max=0;
	long long int n;cin>>n;
	vector<int>a;
	for(long long int i=0;i<n;i++)
	{
		long long int x;cin>>x;
		a.push_back(x);
	}	
	for(long long int i=n-1;i>=0;i--)
	{
		long long int temp;
		if(i==n-1)
		{
			ans=ans+a[i];
			temp=a[i]-1;
		}
		else
		{
			if(a[i]>=temp)
			{
				ans=ans+temp;
				temp--;
			}
			else
			{
				ans=ans+a[i];
				temp=a[i]-1;
			}
		}
		if(temp<0)temp=0;
	}
	cout<<ans;
}

B. Chocolates
time limit per test2 seconds
memory limit per test256 megabytes
inputstandard input
outputstandard output
You went to the store, selling n types of chocolates. There are ai chocolates of type i in stock.

You have unlimited amount of cash (so you are not restricted by any prices) and want to buy as many chocolates as possible. However if you buy xi chocolates of type i (clearly, 0≤xi≤ai), then for all 1≤j<i at least one of the following must hold:

xj=0 (you bought zero chocolates of type j)
xj<xi (you bought less chocolates of type j than of type i)
For example, the array x=[0,0,1,2,10] satisfies the requirement above (assuming that all ai≥xi), while arrays x=[0,1,0], x=[5,5] and x=[3,2] don’t.

Calculate the maximum number of chocolates you can buy.

Input
The first line contains an integer n (1≤n≤2⋅105), denoting the number of types of chocolate.

The next line contains n integers ai (1≤ai≤109), denoting the number of chocolates of each type.

Output
Print the maximum number of chocolates you can buy.

Examples
inputCopy
5
1 2 1 3 6
outputCopy
10
inputCopy
5
3 2 5 4 10
outputCopy
20
inputCopy
4
1 1 1 1
outputCopy
1
Note
In the first example, it is optimal to buy: 0+0+1+3+6 chocolates.

In the second example, it is optimal to buy: 1+2+3+4+10 chocolates.

In the third example, it is optimal to buy: 0+0+0+1 chocolates.

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值