Good Bye 2013 A
Vasily the Programmer loves romance, so this year he decided to illuminate his room with candles.
Vasily has a candles.When Vasily lights up a new candle, it first burns for an hour and then it goes out. Vasily is smart, so he can make b went out candles into a new candle. As a result, this new candle can be used like any other new candle.
Now Vasily wonders: for how many hours can his candles light up the room if he acts optimally well? Help him find this number.
The single line contains two integers, a and b (1 ≤ a ≤ 1000; 2 ≤ b ≤ 1000).
Print a single integer — the number of hours Vasily can light up the room for.
4 2
7
6 3
8
Consider the first sample. For the first four hours Vasily lights up new candles, then he uses four burned out candles to make two new ones and lights them up. When these candles go out (stop burning), Vasily can make another candle. Overall, Vasily can light up the room for 7 hours.
1 #pragma comment(linker,"/STACK:102400000,102400000") 2 #include <cstdio> 3 #include <vector> 4 #include <cmath> 5 #include <queue> 6 #include <cstring> 7 #include <iostream> 8 #include <algorithm> 9 using namespace std; 10 #define INF 0x7fffffff 11 #define mod 1000000007 12 #define ll long long 13 #define maxn 25 14 #define pi acos(-1.0) 15 #define FF(i,n) for(int i=0;i<n;i++) 16 int n, m, s, z; 17 int a[maxn]; 18 int main(){ 19 scanf("%d%d", &n, &m); 20 int i=n; s = n; 21 while (i>=m){ 22 n = i; 23 i = 0; 24 while (n){ 25 i += n%m; 26 n /= m; 27 s += n; 28 } 29 } 30 printf("%d\n", s); 31 return 0; 32 }
浙公网安备 33010602011771号