CF291-B

B. Han Solo and Lazer Gun
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 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.

Output

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

Sample test(s)
input
4 0 0
1 1
2 2
2 0
-1 -1
output
2
input
2 1 2
1 1
1 0
output
1
Note

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

 给定n个敌人的位置和枪的起始位置,一枪可以射杀经过枪位置直线上的所有敌人

问至少需要多少枪可以杀光所有敌人

数学题,用斜率或者叉积都可以求解

我用的是斜率,将枪的位置看成原点,求所有敌人相对枪的坐标,则敌人i的斜率为yi/xi

枚举每个活着敌人,将和该敌人相同斜率的人都杀光,子弹数+1

遍历完后子弹数即为答案

#include <iostream>

using namespace std;

 

int main()

 

{

 

    int n,x,y;

 

    int use[1010];

 

    double px[1010];

 

    double py[1010];

 

    cin>>n>>x>>y;

 

    for(int i=1;i<=n;i++)

 

    {

 

        cin>>px[i]>>py[i];

 

        px[i]-=x;

 

        py[i]-=y;

 

    }

 

    int res=0;

 

    bool flag=false;

 

    for(int i=1;i<=n;i++)

 

    {

 

        if(px[i]==0)

 

        {

 

            use[i]=1;

 

            if(!flag)

 

            {

 

                flag=true;

 

                res++;

 

            }

 

            else

 

                continue;

 

        }

 

        if(!use[i])

 

        {

 

            res++;

 

            use[i]=1;

 

            double k=py[i]/px[i];

 

            for(int j=1;j<=n;j++)

 

            {

 

                if(py[j]/px[j]==k&&!use[j])

 

                    use[j]=1;

 

            }

 

        }

 

    }

 

    cout<<res<<endl;

 

    return 0;

 

}

 

 
  

 

 
  

 

转载于:https://www.cnblogs.com/wzsblogs/p/4293192.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
该资源内项目源码是个人的课程设计、毕业设计,代码都测试ok,都是运行成功后才上传资源,答辩评审平均分达到96分,放心下载使用! ## 项目备注 1、该资源内项目代码都经过测试运行成功,功能ok的情况下才上传的,请放心下载使用! 2、本项目适合计算机相关专业(如计科、人工智能、通信工程、自动化、电子信息等)的在校学生、老师或者企业员工下载学习,也适合小白学习进阶,当然也可作为毕设项目、课程设计、作业、项目初期立项演示等。 3、如果基础还行,也可在此代码基础上进行修改,以实现其他功能,也可用于毕设、课设、作业等。 下载后请首先打开README.md文件(如有),仅供学习参考, 切勿用于商业用途。 该资源内项目源码是个人的课程设计,代码都测试ok,都是运行成功后才上传资源,答辩评审平均分达到96分,放心下载使用! ## 项目备注 1、该资源内项目代码都经过测试运行成功,功能ok的情况下才上传的,请放心下载使用! 2、本项目适合计算机相关专业(如计科、人工智能、通信工程、自动化、电子信息等)的在校学生、老师或者企业员工下载学习,也适合小白学习进阶,当然也可作为毕设项目、课程设计、作业、项目初期立项演示等。 3、如果基础还行,也可在此代码基础上进行修改,以实现其他功能,也可用于毕设、课设、作业等。 下载后请首先打开README.md文件(如有),仅供学习参考, 切勿用于商业用途。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值