Codeforces#420 Okabe and Banana Trees

题目网址:http://codeforces.com/contest/821/problem/B

题目:

B. Okabe and Banana Trees
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard 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 + ybananas. 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 ≤ 10001 ≤ 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.

思路:先求出在y=0的情况下,x的取值范围,再遍历x的取值范围,将0->x看成矩形的一条边。再将y(x)看作矩形的另一条边。遍历x的过程中,不断更新最大值。

计算:(以上图情况为例)

 res=[(0+0)+(0+1)+(0+2)+(0+3)]+[(1+0)+(1+1)+(1+2)+(1+3)]+[(2+0)+(2+1)+(2+2)+(2+3)]

    =[(3+3+3)+(2+2+2)+(1+1+1)+(0+0+0)]+[0*4+1*4+2*4+3*4]

 有上述情况可推出:res=y*(y+1)/2*(i+1)+i*(i+1)/2*(y+1),其中i为x的当前取值,y为y(i)

代码:

#include <cstdio>
#include <algorithm>
using namespace std;
typedef long long ll;
int main(){
    int m,b;
    ll res=0;
    scanf("%d%d",&m,&b);
    ll x=m*b;
    for(ll i=0;i<=x;i++){
        ll cur=0;
        ll y=(ll)(-i*1.0/m+b);
        cur+=y*(y+1)/2*(i+1)+i*(i+1)/2*(y+1);
        res=max(res, cur);
    }
    printf("%I64d\n",res);
    return 0;
}


  • 2
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值