Guard the empire
时间限制:C/C++/Rust/Pascal 1秒,其他语言2秒
空间限制:C/C++/Rust/Pascal 100 M,其他语言200 M
64bit IO Format: %lld

题目描述


    Hbb is a general and respected by the entire people of the Empire. The wizard will launch an attack in the near future in an attempt to destroy the empire. Hbb had knew the way the Wizards will attack this time: they will summon N bone dragons on the broad flat ground outside the wall and let the bone dragons spray a flame (the flame can only be emitted once). If the wall is sprayed by flames, the wall will be completely destroyed in an instant. To withstand the wizard's attack, Hbb feels very anxious, although he already knew where all the bone dragons would be summoned.

   Coincidentally, scientists at the Capital Laboratory have developed a new type of weapon. The striking range of the weapon is a circle with the weapon as the center and a radius of D. In other words, if the weapons are properly placed, the bone dragons within the strike range will be destroyed.

   Weapons can only be placed on the wall, but Hbb is too anxious at this time to know how to place the weapon, so he tells you the position of the bone dragon . Since the cost of the weapon is very expensive, Hbb gives you a requirement: tell him what the minimum number of weapons to use in order to destroy all bone dragons. If there is no way to destroy all bone dragons, output -1.

输入描述:

The input consists of several test cases.
The first line of each case contains two integers and , where N is the number of bone dragon in the ground and D is the distance of coverage of the weapon. Then is followed by N lines each containing two integers  and , representing the coordinate of the position of each bone dragon. 
Then a blank line follows to separate the cases. 

The input is terminated by a line containing pair of zeros 

输出描述:

For each test case output one line consisting of the test case number followed by the minimal number of weapon needed. "-1" installation means no solution for that case.

示例1

输入

复制
3 2
1 2
-3 1
2 1

1 2
0 2

0 0

输出

复制
Case 1: 2
Case 2: 1

备注:

Case1 is explained in the figure, the wall is regarded as the X axis, and the weapon can only be placed on the X axis. The red circle is the weapon strike range.