URAL 2067 Friends and Berries

本文介绍了一种通过计算儿童间的好感度来寻找最佳朋友对的算法。好感度由距离公式定义,通过判断所有儿童是否共线来确定最佳朋友对。文章提供了完整的C++代码实现。

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

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 v, u as: p( v, u) = sqrt(( s vs u) 2 + ( r vr u) 2)
The friendliness between three children v, u, w is the half the sum of pairwise friendlinesses: p( v, u, w) = ( p( v, u) + p( v, w) + p( u, w)) / 2
The best friends are that pair of children v, u for which vu and p( v, u) ≥ p( v, u, w) 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 8s i, r i ≤ 10 8).
It is guaranteed that for every two children their tastes differ. In other words, if vu then s vs u or r vr 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
inputoutput
2
2 3
7 6
1
1 2
3
5 5
2 -4
-4 2
0
Hint

题目中那两个公式的意思就是如果两个点与其他任意一个点都共线并在同一边上,就存在最好的朋友,否则输出0
先排序,最远的两个点即为所求。
#include<iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
#include<cmath>
using namespace std;
struct node
{
    int x,y;
    int num;
}a[300005];
bool cmp(node a,node b)
{
    if(a.x==b.x) return a.y<b.y;
    return a.x<b.x;
}
int main()
{
    int n;
    scanf("%d",&n);
    int i;
    for(i=0;i<=n-1;i++)
    {
        scanf("%d%d",&a[i].x,&a[i].y);
        a[i].num=i+1;
    }
    sort(a,a+n,cmp);
    int flag=0;
    for(i=0;i<=n-1;i++)
    {
        if(abs(a[i].x-a[0].x)*abs(a[i].y-a[n-1].y)!=abs(a[i].x-a[n-1].x)*abs(a[i].y-a[0].y))
        {
            flag=1;
            break;
        }
    }
    if(!flag)
    {
        printf("1\n");
        printf("%d %d\n",a[0].num,a[n-1].num);
    }
    else printf("0\n");
    return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值