CF - 379A. New Year Candles - 模拟

1.题目描述:

A. New Year Candles
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

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 bwent 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.

Input

The single line contains two integers, a and b (1 ≤ a ≤ 1000; 2 ≤ b ≤ 1000).

Output

Print a single integer — the number of hours Vasily can light up the room for.

Examples
input
4 2
output
7
input
6 3
output
8
Note

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 

2.题意概述:

a只蜡烛,每只蜡烛最多可以照1小时,同时b只已经用完的空蜡烛蜡烛可以换一只蜡烛,问你最多可以点亮房间几小时?

3.解题思路:

模拟模拟再模拟,发现学长开的这场果然是手速场

4.AC代码:

#include <stdio.h>
#include <algorithm>
using namespace std;
typedef long long ll;
int a, b, ans;

int main()
{
	while (scanf("%d%d", &a, &b) != EOF)
	{
		int sum = 0;
		ans = 0;
		while (a--)
		{
			ans++;
			sum++;
			if (sum % b == 0)
			{
				a++;
				sum = 0;
			}
		}
		printf("%d\n", ans);
	}
    return 0;
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值