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.
4 0 0 1 1 2 2 2 0 -1 -1
2
2 1 2 1 1 1 0
1
Explanation to the first and second samples from the statement, respectively:
题意:在同一斜率的都可以被打shi,特判与源点竖直的一条线就可以了,因为k = (y - a)/(x -b),当 x==b时候特判,剩下的用set就可以了
#include<iostream>
#include<cstdio>
#include<string.h>
#include<string>
#include<stack>
#include<set>
#include<algorithm>
#include<cmath>
#include<vector>
#include<map>
#define ll __int64
#define lll unsigned long long
#define MAX 1000009
#define eps 1e-8
using namespace std;
int main()
{
int n,a,b;
int x,y;
int flag1,flag2;
ll sum;
while(~scanf("%d%d%d",&n,&a,&b))
{
flag1 = 0;
flag2 = 0;
sum = 0;
set<double>op;
for(int i = 0; i<n; i++)
{
scanf("%d%d",&x,&y);
if(x==a)
{
flag2 = 1;
}
//cout<<(y-b)*1.0/(x-a)<<endl;
else
op.insert((y-b)*1.0/(x-a));
}
if(flag2==1)
sum++;
sum+=op.size();
cout<<sum<<endl;
}
return 0;
}