E - Friends and Berries URAL - 2067 ----三点共线

E - Friends and Berries

  URAL - 2067 

There is a group of  n children. According to a proverb, every man to his own taste. So the children value strawberries and raspberries differently. Let’s say that  i-th child rates his attachment to strawberry as  s  i and his attachment to raspberry as  r i.
According to another proverb, opposites attract. Surprisingly, those children become friends whose tastes differ.
Let’s define friendliness between two children  vu as:  pvu) =  sqrt((  s  v −  s u2 + (  r  v −  r  u2)
The friendliness between three children  vuw is the half the sum of pairwise friendlinesses:  pvuw) = (  pvu) +  pvw) +  puw)) / 2
The best friends are that pair of children  vu for which  v ≠  u and  pvu) ≥  p( vuw) for every child  w. Your goal is to find all pairs of the best friends.
Input
In the first line there is one integer  n — the amount of children (2 ≤  n ≤ 2 · 10  5).
In the next  n lines there are two integers in each line —  s  i and  r  i (−10  8 ≤  s ir  i ≤ 10  8).
It is guaranteed that for every two children their tastes differ. In other words, if v ≠  u then  s  v ≠  s  u or  r  v ≠  r  u.
Output
Output the number of pairs of best friends in the first line.
Then output those pairs. Each pair should be printed on a separate line. One pair is two numbers — the indices of children in this pair. Children are numbered in the order of input starting from 1. You can output pairs in any order. You can output indices of the pair in any order.
It is guaranteed that the amount of pairs doesn’t exceed 10  5.
Example
input output
2
2 3
7 6
1
1 2
3
5 5
2 -4
-4 2
0

题目链接:https://cn.vjudge.net/contest/160744#problem/E


题目的意思就是说找到两个点,使得dis(u,v)>=dis(u,w)+dis(w,v),仔细想一想其实不可能大于(构成三角形的条件)

这个题是个水题,我们判断所有点是否共线,如果是,就输出线段的两个端点。

代码:

#include <bits/stdc++.h>
#define zero(x) (((x)>0?(x):(-x))<eps)
using namespace std;
const int MAXN=2e5+7;
int n;
const double eps=1e-8;

struct Point
{
    double x,y;
    int num;
    bool operator < (const Point &a)const
    {
        if(a.x!=x)return x<a.x;
        else if(a.y!=y)return y<a.y;
        else return num<a.num;
    }
}p[MAXN];

double xmult(Point p1,Point p2,Point p)
{
    return (p1.x-p.x)*(p2.y-p.y)-(p2.x-p.x)*(p1.y-p.y);
}

int dot_inLine(Point p1,Point p2,Point p3)//判断三点共线
{
    return zero(xmult(p1,p2,p3));
}
int main()
{
    int n;
    scanf("%d",&n);
    for(int i=0;i<n;++i)
    {
        scanf("%lf%lf",&p[i].x,&p[i].y);
        p[i].num=i+1;
    }
    sort(p,p+n);
    int flag=1;
    for(int i=2;i<n;++i)
    {
        if(!dot_inLine(p[0],p[1],p[i]))
        {
            flag=0;
            break;
        }
    }
    if(!flag)puts("0");
    else
    {
        puts("1");
        printf("%d %d\n",p[0].num,p[n-1].num);
    }
    return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值