#abc085d. [abc085_d]Katana Thrower
[abc085_d]Katana Thrower
Problem Statement
You are going out for a walk, when you suddenly encounter a monster. Fortunately, you have katana (swords), Katana , Katana , , Katana , and can perform the following two kinds of attacks in any order:
- Wield one of the katana you have. When you wield Katana , the monster receives points of damage. The same katana can be wielded any number of times.
- Throw one of the katana you have. When you throw Katana at the monster, it receives points of damage, and you lose the katana. That is, you can no longer wield or throw that katana.
The monster will vanish when the total damage it has received is points or more. At least how many attacks do you need in order to vanish it in total?
Constraints
- All input values are integers.
Input
Input is given from Standard Input in the following format:
Output
Print the minimum total number of attacks required to vanish the monster.
Sample Input 1
1 10
3 5
Sample Output 1
3
You have one katana. Wielding it deals points of damage, and throwing it deals points of damage. By wielding it twice and then throwing it, you will deal points of damage in a total of three attacks, vanishing the monster.
Sample Input 2
2 10
3 5
2 6
Sample Output 2
2
In addition to the katana above, you also have another katana. Wielding it deals points of damage, and throwing it deals points of damage. By throwing both katana, you will deal points of damage in two attacks, vanishing the monster.
Sample Input 3
4 1000000000
1 1
1 10000000
1 30000000
1 99999999
Sample Output 3
860000004
Sample Input 4
5 500
35 44
28 83
46 62
31 79
40 43
Sample Output 4
9