CodeForces -514 B. Han Solo and Lazer Gun(思维)

本文探讨了一个平面坐标系中,汉·索洛使用激光枪消灭多个帝国风暴兵的问题。通过确定最少射击次数来击败所有目标,提供了一种有效的算法解决方案。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

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.

Input

The first line contains three integers nx0 и 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 xiyi ( - 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.

Output

Print a single integer — the minimum number of shots Han Solo needs to destroy all the stormtroopers.

Examples
input
Copy
4 0 0
1 1
2 2
2 0
-1 -1
output
Copy
2
input
Copy
2 1 2
1 1
1 0
output
Copy
1
Note

Explanation to the first and second samples from the statement, respectively:

思路:给定一个确定的位置坐标可以发射武器,该直线的恐怖分子全部死亡,对于任意输入的整数坐标最少需要多少条直线

Ac代码如下:

#include<iostream>
#include<algorithm>
using namespace std;
int main(){
	int N,x,y;
	double a[11111];
	int ans=0;
	int res=0;
	int flag=0;
	cin>>N>>x>>y;
	while(N--){
		int xx,yy;
		cin>>xx>>yy;
		int b=xx-x;
		int c=yy-y;
		if(!flag&&b==0){
			res++;
			flag=1;
		}
		else if(b!=0){
			a[ans++]=c*1.0/b;
		}
	}
	sort(a,a+ans);
	for(int i=0;i<ans;i++){
		while(a[i]==a[i+1]&&i<ans-1){
			i++;
		}
		res++;
	}
	cout<<res<<endl;
	return 0;
} 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值