447-回旋镖的数量

Posted angelica-duhurica

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了447-回旋镖的数量相关的知识,希望对你有一定的参考价值。

447-回旋镖的数量

给定平面上 n 对不同的点,“回旋镖” 是由点表示的元组 (i, j, k) ,其中 i 和 j 之间的距离和 i 和 k 之间的距离相等(需要考虑元组的顺序)

找到所有回旋镖的数量。你可以假设 n 最大为 500,所有点的坐标在闭区间 [-10000, 10000] 中。

示例:

输入:
[[0,0],[1,0],[2,0]]

输出:
2

解释:
两个回旋镖为 [[1,0],[0,0],[2,0]] 和 [[1,0],[2,0],[0,0]]

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/number-of-boomerangs
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

    public int numberOfBoomerangs(int[][] points) {
        int res = 0;
        Map<Integer, Integer> map = new HashMap<>();
        for(int i = 0; i < points.length; i++) {
            map.clear();
            for(int j = 0; j < points.length; j++) {
                if(i == j) {
                    continue;
                }
                int d = getDistance(points[i], points[j]);
                int cnt = map.getOrDefault(d, 0);
                res += cnt * 2;
                map.put(d, cnt + 1);
            }
        }
        return res;
    }

    private Integer getDistance(int[] point0, int[] point1) {
        return (point0[0] - point1[0]) * (point0[0] - point1[0])
                + (point0[1] - point1[1]) * (point0[1] - point1[1]);
    }

以上是关于447-回旋镖的数量的主要内容,如果未能解决你的问题,请参考以下文章

447. 回旋镖的数量

447. 回旋镖的数量

447 Number of Boomerangs 回旋镖的数量

leetcode中等447回旋镖的数量

Leetcode刷题100天—447. 回旋镖的数量( 哈希表)—day37

Leetcode刷题100天—447. 回旋镖的数量( 哈希表)—day37