• codeforces679B Bear and Tower of Cubes(思路)


    题意:

    给一个m<=10^15,每次都减最接近当前值的立方数

    让你找一个不大于m的最大的数并且这个数是减法次数最多的数

    思路:

    每次有两种情况,一个是减去第一个不大于当前值的立方数

    另一个是减去第二个不大于当前值的立方数

    但是这时候当前数应变为下一个立方数-1-当前立方数

    dfs求最优的解

    /* ***********************************************
    Author        :devil
    Created Time  :2016/6/22 16:18:17
    ************************************************ */
    #include <cstdio>
    #include <cstring>
    #include <iostream>
    #include <algorithm>
    #include <vector>
    #include <queue>
    #include <set>
    #include <map>
    #include <string>
    #include <cmath>
    #include <stdlib.h>
    using namespace std;
    typedef long long LL;
    LL re[100010];
    pair<LL,LL>ans;
    void dfs(LL now,LL cnt,LL cur)
    {
        if(!now)
        {
            ans=max(ans,make_pair(cnt,cur));
            return ;
        }
        int q=upper_bound(re+1,re+100002,now)-re;
        q--;
        dfs(now-re[q],cnt+1,cur+re[q]);
        if(q>1) dfs(re[q]-1-re[q-1],cnt+1,cur+re[q-1]);
    }
    int main()
    {
        //freopen("in.txt","r",stdin);
        LL p;
        scanf("%I64d",&p);
        for(LL i=1;i<=100001;i++)
            re[i]=i*i*i;
        dfs(p,0,0);
        printf("%I64d %I64d
    ",ans.first,ans.second);
        return 0;
    }
  • 相关阅读:
    区块链分布式云存储项目盘点
    区块链一定要知道的的七大认识误区
    以太坊“空块”数量激增有什么影响?
    区块链技术涉及哪些编程语言?
    一文读懂实用拜占庭容错(PBFT)算法
    清除浮动的影响
    滚动条
    分享侧栏例子
    最最最简单的轮播图(JQuery)
    3D动画
  • 原文地址:https://www.cnblogs.com/d-e-v-i-l/p/5608079.html
Copyright © 2020-2023  润新知