[leetcode] 447. Number of Boomerangs

博客围绕平面上回旋镖数量的问题展开。给定平面上两两不同的点,回旋镖是满足特定距离关系的三元组。通过分析,将问题转化为遍历各点,统计与某点距离相等的点的数量,再根据排列方式计算结果并累加,最后给出了相关代码和参考文献。

Description

Given n points in the plane that are all pairwise distinct, a “boomerang” is a tuple of points (i, j, k) such that the distance between i and j equals the distance between i and k (the order of the tuple matters).

Find the number of boomerangs. You may assume that n will be at most 500 and coordinates of points are all in the range [-10000, 10000] (inclusive).

Example:

Input:

[[0,0],[1,0],[2,0]]

Output:

2

Explanation:

The two boomerangs are [[1,0],[0,0],[2,0]] and [[1,0],[2,0],[0,0]]

分析

题目的意思是:给你一些点,用这些点组成三元组(i,j,k),其中i到j的距离跟i到k的距离相等。

  • 如果我们有一个点a,还有两个点b和c,如果ab和ac之间的距离相等,那么就有两种排列方法abc和acb;如果有三个点b,c,d都分别和a之间的距离相等,那么有六种排列方法,abc, acb, acd, adc, abd, adb,类推:如果有n个点,那么排列方式为n*(n-1)
  • 那么我们问题就变成了遍历所有点,让每个点都做一次点a,然后遍历其他所有点,统计和a距离相等的点有多少个,然后分别带入n(n-1)计算结果并累加到res中,只有当n大于等于2时,res值才会真正增加。

代码

class Solution {
public:
    int numberOfBoomerangs(vector<pair<int, int>>& points) {
        int res=0;
        for(int i=0;i<points.size();i++){
            unordered_map<int,int> m;
            for(int j=0;j<points.size();j++){
                int a=points[j].first-points[i].first;
                int b=points[j].second-points[i].second;
                m[a*a+b*b]++;
            }
            for(auto t:m){
                res+=t.second*(t.second-1);
            }
        }
        return res;
    }
};

参考文献

[LeetCode] Number of Boomerangs 回旋镖的数量

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

农民小飞侠

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值