You have a single 3D printer, and would like to use it to produce n statues. However, printing the statues one by one on the 3D printer takes a long time, so it may be more time-efficient to first use the 3D printer to print a new printer. That new printer may then in turn be used to print statues or even more printers. Print jobs take a full day, and every day you can choose for each printer in your possession to have it print a statue, or to have it 3D print a new printer (which becomes available for use the next day).
What is the minimum possible number of days needed to print at least n status?
输入输出样例
Input
The input contains a single integer n (1≤n≤10000), the number of statues you need to print.
Output
Output a single integer, the minimum number of days needed to print at least n status.
解题关键
找到一个最接近于n的且为2的x次方的数(x为大于等于0的整数)
代码
#include<iostream>
using namespace std;
int main() {
int n;
int count = 0;
int num = 1;
cin >> n;
while (num < n) {
num = num * 2;
count = count + 1;
}
cout << count+1<<endl;
}