447. Number of Boomerangs

本文详细解析了LeetCode上的Number of Boomerangs问题,介绍了如何计算给定点集中的所有可能的回旋镖组合,并提供了一个高效的解决方案。通过使用哈希表来跟踪每个点与其他点之间的距离出现的频率,可以有效地计算出所有可能的回旋镖数量。

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


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]]

解析:首先lc上这道题tag是easy,但博主真心觉得这道题并不easy,陷阱很多,需要些空间想象能力以及高中数学知识。题目意思是说给出平面中一些点,求两点连起来的两段相等的线段的可能性,其中两段线段要有一个公共顶点。需要注意的是要考虑顺序,比如ba = bc 和 bc = ba算两种可能性。先来看一个简单例子,假设有5个点距离a点距离都是2,那么从这五个点中选出到a的两条线段的可能性就是C(5,2)(高中数学组合数),再考虑顺序不同则要乘以2。所以到a点距离为2的可能性有C(5,2) * 2 = 5! / (2! * 3!)  * 2 = 5 * 4种。同理对每一个点做如上计算,加和总数就是最后答案

 

//Time: O(n2), Space: O(n)    
public int numberOfBoomerangs(int[][] points) {
        if (points == null || points.length == 0 || points[0].length == 0) {
            return 0;
        }
        
        int result = 0;
        
        for (int i = 0; i < points.length; i++) {
            HashMap<Integer, Integer> map = new HashMap<Integer, Integer>();
        
            for (int j = 0; j < points.length; j++) {
                if (i == j) {//去掉自己和自己的距离的情况
                    continue;
                }
                int x = points[i][0] - points[j][0];//横坐标差
                int y = points[i][1] - points[j][1];//纵坐标差
                int dis = x * x + y * y;
                
                if (!map.containsKey(dis)) {
                    map.put(dis, 1);
                } else {
                    map.put(dis, map.get(dis) + 1);
                }
            }
            
            for (int v : map.values()) {
                result = result + v * (v - 1); //C(n, 2) * 2的结果
            }
        }
        
        return result;
    }

 


转载于:https://www.cnblogs.com/jessie2009/p/9773527.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值