B. Han Solo and Lazer Gun1400 / 计算几何
Posted 幽殇默
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了B. Han Solo and Lazer Gun1400 / 计算几何相关的知识,希望对你有一定的参考价值。
https://codeforces.com/problemset/problem/514/B
就是求每个点和我们的点的斜率,求有多少个不同的斜率即可。
#include<bits/stdc++.h>
using namespace std;
typedef pair<int,int> PII;
map<PII,int>mp;
int n,x,y,a,b;
int gcd(int a,int b) {return b?gcd(b,a%b):a;}
int main(void)
{
cin>>n>>x>>y;
for(int i=0;i<n;i++)
{
cin>>a>>b;
int xx=x-a;
int yy=y-b;
int temp=gcd(xx,yy);
mp[{xx/temp,yy/temp}]++;
}
cout<<mp.size()<<endl;
return 0;
}
以上是关于B. Han Solo and Lazer Gun1400 / 计算几何的主要内容,如果未能解决你的问题,请参考以下文章