hihocoder1498 Diligent Robots

本文探讨了一个机器人通过自我复制来高效完成任务的问题。初始状态只有一个机器人,它可以自我复制或完成任务,但复制自身需要消耗时间。文章提供了一种贪心算法解决方案,并给出了具体的代码实现。

时间限制:10000ms
单点时限:1000ms
内存限制:256MB
描述
There are N jobs to be finished. It takes a robot 1 hour to finish one job.

At the beginning you have only one robot. Luckily a robot may build more robots identical to itself. It takes a robot Q hours to build another robot.

So what is the minimum number of hours to finish N jobs?

Note two or more robots working on the same job or building the same robot won't accelerate the progress.

输入
The first line contains 2 integers, N and Q.

For 70% of the data, 1 <= N <= 1000000

For 100% of the data, 1 <= N <= 1000000000000, 1 <= Q <= 1000

输出
The minimum number of hours.

样例输入
10 1
样例输出
5

 

题意:开局只有一个机器人,每次都可以两种操作

1.一个机器人可以完成一个任务

2.复制自己

题解:贪心,要复制必须先全部复制完后再进行工作,直接暴力就可以了

#include <bits/stdc++.h>
using namespace std;
int main(){
    long long n,m, t, k, ans;
    cin>>n>>m;
    t = 2,k = 1;
    ans = n;
    while(t<n){
        ans = min(ans, k*m+n/t+(n%t==0?0:1));
        t = t*2;
        k++;
    }
    cout<<ans<<endl;
    return 0;
}

 

转载于:https://www.cnblogs.com/Noevon/p/7103315.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值