One day a highly important task was commissioned to Vasya — writing a program in a night. The program consists of n lines of code. Vasya is already exhausted,
so he works like that: first he writes v lines of code, drinks a cup of tea, then he writes as much as lines,
drinks another cup of tea, then he writes
lines
and so on:
,
,
,
...
The expression is
regarded as the integral part from dividing number a by number b.
The moment the current value equals
0, Vasya immediately falls asleep and he wakes up only in the morning, when the program should already be finished.
Vasya is wondering, what minimum allowable value v can take to let him write not less than n lines of code before he falls asleep.
The input consists of two integers n and k, separated by spaces — the size of the program in lines and the productivity reduction coefficient, 1 ≤ n ≤ 109, 2 ≤ k ≤ 10.
Print the only integer — the minimum value of v that lets Vasya write the program in one night.
7 2
4
59 9
54
解决方案:直接二分答案即可
code:#include<iostream> #include<cstdio> #include<cstring> using namespace std; int n,k; long long sum(long long mid) { long long cnt=mid; long long kk=k; while(mid/kk) { cnt+=int((mid/kk)); kk*=k; } return cnt; } int main() { while(~scanf("%d%d",&n,&k)) { long long low=1,high=n,mid; while(low<high) { mid=(low+high)/2; if(sum(mid)>=n) { high=mid; } else low=mid+1; } cout<<low<<endl; } return 0; }