leetcode447-Number of Boomerangs

1.问题描述

描述:

  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 jequals 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).

示例:

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

2.问题分析

  1. 第一遍:

    • 如果到点a的距离为distance的点共有n个,那么从这n个点中有序找两个点就能与A点构成回旋,根据排列公式,总的回旋个数为An2个,即n * (n - 1)个。遍历每一个点,map的key是距离,value是距离该点key个单位的点的个数。

      class Solution {
          public int numberOfBoomerangs(int[][] points) {
              int res = 0;
              for(int i = 0; i < points.length; i++){
                  Map<Double, Integer> map = new HashMap<>();
                  for(int j = 0; j < points.length; j++){
                      Double distance = Math.pow(points[i][0] - points[j][0], 2) + Math.pow(points[i][1] - points[j][1], 2);
                      if(map.containsKey(distance)){
                          map.put(distance, map.get(distance) + 1);
                      }else{
                          map.put(distance, 1);
                      }
                  }
      
                  for(Integer count : map.values()){
                      res += count * (count - 1);
                  }
              }
              return res;
          }
      }

    • 改进:将map移到for循坏外,之后每次外部循环结束后,执行map.clear()操作。不再每次都新建map集合。

              Map<Double, Integer> map = new HashMap<>();
              for(int i = 0; i < points.length; i++){
                  for(int j = 0; j < points.length; j++){
                      Double distance = Math.pow(points[i][0] - points[j][0], 2) + Math.pow(points[i][1] - points[j][1], 2);
                      if(map.containsKey(distance)){
                          map.put(distance, map.get(distance) + 1);
                      }else{
                          map.put(distance, 1);
                      }
                  }
      
                  for(Integer count : map.values()){
                      res += count * (count - 1);
                  }
                  map.clear();
              }

原文地址:https://www.cnblogs.com/clairexxx/p/10486905.html

时间: 2024-08-03 01:52:47

leetcode447-Number of Boomerangs的相关文章

LeetCode Number of Boomerangs

原题链接在这里:https://leetcode.com/problems/number-of-boomerangs/ 题目: 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 iand j equals the distance between i and k (t

Leetcode 447. Number of Boomerangs JAVA语言

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 iand j equals the distance between i and k (the order of the tuple matters). Find the number of boomerangs. Y

[LeetCode]447 Number of Boomerangs

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 iand j equals the distance between i and k (the order of the tuple matters). Find the number of boomerangs. Y

Number of Boomerangs

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.

447. Number of Boomerangs 回力镖数组的数量

[抄题]: 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 boomer

447. Number of Boomerangs

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.

447. 求回旋镖坐标的数量 NumberOfBoomerangs

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 iand j equals the distance between i and k (the order of the tuple matters). Find the number of boomerangs. Y

LeetCode Problems List 题目汇总

No. Title Level Rate 1 Two Sum Medium 17.70% 2 Add Two Numbers Medium 21.10% 3 Longest Substring Without Repeating Characters Medium 20.60% 4 Median of Two Sorted Arrays Hard 17.40% 5 Longest Palindromic Substring Medium 20.70% 6 ZigZag Conversion Ea

Leetcode problems classified by company 题目按公司分类(Last updated: October 2, 2017)

Sorted by frequency of problems that appear in real interviews.Last updated: October 2, 2017Google (214)534 Design TinyURL388 Longest Absolute File Path683 K Empty Slots340 Longest Substring with At Most K Distinct Characters681 Next Closest Time482