zoukankan      html  css  js  c++  java
  • Codeforces Round #291 (Div. 2)——B<set>—— Han Solo and Lazer Gun

    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.

    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:

    大意:瞄准点在x,y有n个人,连在一起的话就打一枪,set新技能get~

    #include<cstdio>
    #include<set>
    using namespace std;
    set<double>se;
    int main()
    {
        int n,x,y,x1,y1,flag = 0;
        scanf("%d%d%d",&n,&x,&y);
        for(int i = 1; i <= n; i++){
            scanf("%d%d",&x1,&y1);
           if(y == y1) flag = 1;
           else se.insert((double)(x-x1)/(y-y1));
        }
        printf("%d
    ",se.size()+flag);
    }
    View Code
  • 相关阅读:
    旧贴-在 win7 / win8 下安装苹果系统 (懒人版)
    解决ios13摇一摇不能触发
    html+css面试合集
    Windows 2012 Server R2 添加用户
    Windows10专业版身份验证错误,可能由于CredSSP加密数据库修正
    STM32F4 7.STM32F4 独立看门狗
    STM32F4 6.STM32F4 外部中断
    STM32F4 5.STM32F4串口通讯
    STM32F4 4.STM32F4时钟系统
    STM32F4 3.GPIO按键输入,实现开关灯
  • 原文地址:https://www.cnblogs.com/zero-begin/p/4345588.html
Copyright © 2011-2022 走看看