3494.Cupboard and Balloons

Time Limit: 1s Memory Limit: 256MB

A girl named Xenia has a cupboard that looks like an arc from ahead. The arc is made of a semicircle with radius r (the cupboard's top) and two walls of height h (the cupboard's sides). The cupboard's depth is r, that is, it looks like a rectangle with base r and height h+r from the sides. The figure below shows what the cupboard looks like (the front view is on the left, the side view is on the right). 3494_1.png Xenia got lots of balloons for her birthday. The girl hates the mess, so she wants to store the balloons in the cupboard. Luckily, each balloon is a sphere with radius 3494_2.png. Help Xenia calculate the maximum number of balloons she can put in her cupboard. You can say that a balloon is in the cupboard if you can't see any part of the balloon on the left or right view. The balloons in the cupboard can touch each other. It is not allowed to squeeze the balloons or deform them in any way. You can assume that the cupboard's walls are negligibly thin.

Input Format(From the terminal/stdin)

Input The single line contains two integers r,h (1 \le r,h \le 107).

Output Format(To the terminal/stdout)

Output Print a single integer - the maximum number of balloons Xenia can put in the cupboard.

Sample Input 1

Copy
1 1
 · \n

Sample Output 1

Copy
3
 \n

Sample Input 2

Copy
1 2
 · \n

Sample Output 2

Copy
5
 \n

Sample Input 3

Copy
2 1
 · \n

Sample Output 3

Copy
2
 \n

Submit

请先 登录

© 2025 FAQs