• Codeforces 618C(计算几何)


    C. Constellation
    time limit per test
    2 seconds
    memory limit per test
    256 megabytes
    input
    standard input
    output
    standard output

    Cat Noku has obtained a map of the night sky. On this map, he found a constellation with n stars numbered from 1 to n. For each i, the i-th star is located at coordinates (xi, yi). No two stars are located at the same position.

    In the evening Noku is going to take a look at the night sky. He would like to find three distinct stars and form a triangle. The triangle must have positive area. In addition, all other stars must lie strictly outside of this triangle. He is having trouble finding the answer and would like your help. Your job is to find the indices of three stars that would form a triangle that satisfies all the conditions. 

    It is guaranteed that there is no line such that all stars lie on that line. It can be proven that if the previous condition is satisfied, there exists a solution to this problem.

    Input

    The first line of the input contains a single integer n (3 ≤ n ≤ 100 000).

    Each of the next n lines contains two integers xi and yi ( - 109 ≤ xi, yi ≤ 109).

    It is guaranteed that no two stars lie at the same point, and there does not exist a line such that all stars lie on that line.

    Output

    Print three distinct integers on a single line — the indices of the three points that form a triangle that satisfies the conditions stated in the problem.

    If there are multiple possible answers, you may print any of them.

    Examples
    input
    3
    0 1
    1 0
    1 1
    output
    1 2 3
    input
    5
    0 0
    0 2
    2 0
    2 2
    1 1
    output
    1 3 5
    Note

    In the first sample, we can print the three indices in any order.

    In the second sample, we have the following picture. 

    Note that the triangle formed by starts 1, 4 and 3 doesn't satisfy the conditions stated in the problem, as point 5 is not strictly outside of this triangle (it lies on it's border).

    题意:给定一些点,选三个点构成三角形,别的点都在三角形外。

    做法:按x为关键字,y为次关键字将所有的点排序,选定1,2两个点,枚举第3个点判断是否能构成三角形。

    #include<iostream>
    #include<cstdio>
    #include<cmath>
    #include<cstdlib>
    #include<algorithm>
    #include<cstring>
    #include<string>
    #include<vector>
    #include<map>
    #include<set>
    #include<queue>
    using namespace std;
    struct ss
    {
        long long x,y,id;
    };
    inline bool cmp(ss a,ss b)
    {
        return (a.x<b.x||a.x==b.x&&a.y<b.y);
    }
    bool check(ss a,ss b,ss c)
    {
        return 1ll*(c.x-a.x)*(b.y-a.y)-1ll*(c.y-a.y)*(b.x-a.x)!=0;
    }
    int n;
    ss a[100001];
    int main()
    {
        scanf("%d",&n);
        int i;
        for (i=1;i<=n;i++)
            scanf("%lld%lld",&a[i].x,&a[i].y),a[i].id=i;
        sort(a+1,a+n+1,cmp);
        //for (i=1;i<=n;i++)
        //        printf("%d %d
    ",a[i].x,a[i].y);
        for (i=3;i<=n;i++)
            if (check(a[1],a[2],a[i]))
            {
                printf("%lld %lld %lld
    ",a[1].id,a[2].id,a[i].id);
                return 0;
            }
        return 0;
    }
  • 相关阅读:
    针对.NET开发者的NuoDB 1.1发布
    用于.NET的可移植HTTP客户端
    Mono Libgdiplus库
    基于Bootstrap Metro 界面风格开发框架 MetroBootstrap
    对C# 程序员来说现在是到目前为止最好的时代
    Xamarin Evolve 2013
    Visual Studio 必备可视化插件推荐
    SQL Server 2008 R2 SP2官方下载地址
    ASP.NET Web API对OData的支持
    在CentOS 6.3下安装OpenPetra 的 Mono 3.0.6 部署包
  • 原文地址:https://www.cnblogs.com/hnqw1214/p/6602461.html
Copyright © 2020-2023  润新知