CF514B.Han Solo and Lazer Gun
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
There are n Imperial stormtroopers on the field. The battle field is a plane with Cartesian coordinate system. Each stormtrooper is associated with his coordinates (x,y) on this plane.
Han Solo has the newest duplex lazer gun to fight these stormtroopers. It is situated at the point (x0,y0) . In one shot it can can destroy all the stormtroopers, situated on some line that crosses point (x0,y0) .
Your task is to determine what minimum number of shots Han Solo needs to defeat all the stormtroopers.
The gun is the newest invention, it shoots very quickly and even after a very large number of shots the stormtroopers don't have enough time to realize what's happening and change their location.
输入格式
The first line contains three integers n , x0 и y0 ( 1<=n<=1000 , −104<=x0,y0<=104 ) — the number of stormtroopers on the battle field and the coordinates of your gun.
Next n lines contain two integers each xi , yi ( −104<=xi,yi<=104 ) — the coordinates of the stormtroopers on the battlefield. It is guaranteed that no stormtrooper stands at the same point with the gun. Multiple stormtroopers can stand at the same point.
输出格式
Print a single integer — the minimum number of shots Han Solo needs to destroy all the stormtroopers.
输入输出样例
输入#1
4 0 0 1 1 2 2 2 0 -1 -1
输出#1
2
输入#2
2 1 2 1 1 1 0
输出#2
1
说明/提示
Explanation to the first and second samples from the statement, respectively: