【codeforces 680 D】【数学+贪心+DFS】【求一个不超过 m 的最大体积 X, 每次选一个最大的 x 使得 x3 不超过当前剩余体积。问在能选最多个数的情况下,X 最大是多少】

传送门:http://codeforces.com/contest/680/problem/D

题意:求一个不超过 m 的最大体积 X , 每次选一个最大的 x 使得 x3 不超过当前剩余体积。问在能选最多个数的情况下, X 最大是多少


思路:

对于每一次选择,首先要保证选完后的剩余体积最大,这样就保证了能选最多个数。然后在这基础上保证 X 最大。
考虑对于最大的 a ,使得 a3<=m .
如果当前选择的是 a ,则剩余体积就是 m1=ma3
如果当前选择的是 a1 , 则剩余体积就是 m2=(a31)(a1)3 . 要保证 a1 是可选的最大的,对 m 的上限有要求
如果当前选择的是 a2 , 则剩余体积就是 m3=(a1)31(a2)3 .
两个相邻数的立方差是不断递增的,所以在 a>=1 的情况下, m2 恒不小于 m3 , 所以就不用考虑 a2
这样对于每一个状态,只要考虑 a a1 . 时间复杂度是 O(m13)


代码:

#include <bits/stdc++.h>
using  namespace  std;

#define ff first
#define ss second
#define ll __int64
template<class T> T sqr(T x){ return x * x * x; }


ll m;
pair<int, ll> P;

void dfs(ll x, int num, ll sum){
    if(!x){ P=max(P, {num, sum}); return ;}//所选的X能到0时更新一下答案
    ll t=1;
    while(sqr(t+1)<=x)t++;
    dfs(x-sqr(t), num+1, sum+sqr(t));
    if(x>0)dfs(sqr(t)-1-sqr(t-1), num+1, sum+sqr(t-1));
}

int  main(){
    scanf("%I64d", &m), dfs(m, 0, 0);
    printf("%d %I64d\n", P.ff, P.ss);
    return 0;
}

D. Bear and Tower of Cubes
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

Limak is a little polar bear. He plays by building towers from blocks. Every block is a cube with positive integer length of side. Limak has infinitely many blocks of each side length.

A block with side a has volume a3. A tower consisting of blocks with sides a1, a2, ..., ak has the total volumea13 + a23 + ... + ak3.

Limak is going to build a tower. First, he asks you to tell him a positive integer X — the required total volume of the tower. Then, Limak adds new blocks greedily, one by one. Each time he adds the biggest block such that the total volume doesn't exceed X.

Limak asks you to choose X not greater than m. Also, he wants to maximize the number of blocks in the tower at the end (however, he still behaves greedily). Secondarily, he wants to maximize X.

Can you help Limak? Find the maximum number of blocks his tower can have and the maximum X ≤ m that results this number of blocks.

Input

The only line of the input contains one integer m (1 ≤ m ≤ 1015), meaning that Limak wants you to choose Xbetween 1 and m, inclusive.

Output

Print two integers — the maximum number of blocks in the tower and the maximum required total volume X, resulting in the maximum number of blocks.

Examples
input
48
output
9 42
input
6
output
6 6
Note

In the first sample test, there will be 9 blocks if you choose X = 23 or X = 42. Limak wants to maximize Xsecondarily so you should choose 42.

In more detail, after choosing X = 42 the process of building a tower is:

  • Limak takes a block with side 3 because it's the biggest block with volume not greater than 42. The remaining volume is 42 - 27 = 15.
  • The second added block has side 2, so the remaining volume is 15 - 8 = 7.
  • Finally, Limak adds 7 blocks with side 1, one by one.

So, there are 9 blocks in the tower. The total volume is is 33 + 23 + 7·13 = 27 + 8 + 7 = 42.


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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值