CF821B-Okabe and Banana Trees

来源:互联网 发布:led蓝光危害 知乎 编辑:程序博客网 时间:2024/06/07 01:25

B. Okabe and Banana Trees

time limit per test2 seconds
memory limit per test256 megabytes
inputstandard input
outputstandard output
Okabe needs bananas for one of his experiments for some strange reason. So he decides to go to the forest and cut banana trees.

Consider the point (x, y) in the 2D plane such that x and y are integers and 0 ≤ x, y. There is a tree in such a point, and it has x + y bananas. There are no trees nor bananas in other points. Now, Okabe draws a line with equation . Okabe can select a single rectangle with axis aligned sides with all points on or under the line and cut all the trees in all points that are inside or on the border of this rectangle and take their bananas. Okabe’s rectangle can be degenerate; that is, it can be a line segment or even a point.

Help Okabe and find the maximum number of bananas he can get if he chooses the rectangle wisely.

Okabe is sure that the answer does not exceed 1018. You can trust him.

Input
The first line of input contains two space-separated integers m and b (1 ≤ m ≤ 1000, 1 ≤ b ≤ 10000).

Output
Print the maximum number of bananas Okabe can get from the trees he cuts.

Examples
input
1 5
output
30
input
2 3
output
25
Note
这里写图片描述
The graph above corresponds to sample test 1. The optimal rectangle is shown in red and has 30 bananas.

题目大意:给你一条直线,在第一象限且在直线下画一个矩形,每个点(x,y)的香蕉数为x+y,矩形内包括边界上的香蕉可采,问最大香蕉数。
解题思路:按y讨论,香蕉数可用y计算得到,首先计算出最右边界,然后用等差数列求和导出香蕉总数公式,若不这样计算,会超时。

#include <iostream>using namespace std;typedef long long LL;int main(){    LL m,b;    LL sum;    LL ans;    while(cin>>m>>b)    {        ans=0;        for(int i=b;i>=0;i--)        {            sum=0;            LL border=m*(b-i);            sum=((border+1)*border/2)*(i+1)+(i*(i+1)/2)*(border+1);            if(sum>ans) ans=sum;        }        cout<<ans<<endl;    }    return 0;}
原创粉丝点击