点击上方“专知”,关注获取专业AI知识”
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.
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]]
题目的意思是一个平面上有n个点,一个"boomerang"由三个点(i, j, k)构成,i和j之间的距离等于i和k之间的距离,让我们求这n个点构成的"boomerang"的数量。
思路:对于任意一个点P来说,如果到3个点B、C、D的距离相等,那么会构成A32 个"boomerang",分别是 A B C,A C B,A B D,A D B,A C D,A D C,同样对于任意一个点,如果到n个点距离相等,那么会构成An2 个"boomerang"。我们可以遍历数组中的每一个点,对于任意一个点,求出到它距离相等的点的个数,根据个数求出"boomerang"的数量,对数量进行累加,得到最终结果。
class Solution {public: int numberOfBoomerangs(vector<pair<int, int>>& points) { int n=points.size(), re=0, dis=0; for(int i=0;i<n;i++) { map<int,int>m; for(int j=0; j<n; j++) { dis=(points[i].first-points[j].first)*(points[i].first-points[j].first)+(points[i].second-points[j].second)*(points[i].second-points[j].second); m[dis]++; } for(auto x:m) { if(x.second>=2) re+=(x.second-1)*x.second; } } return re; }};
人生易老,唯有陪伴最长情,加油!
以上就是关关关于这道题的总结经验,希望大家能够理解,有什么问题可以在我们的专知公众号平台上交流或者加我们的QQ专知-人工智能交流群 426491390,也可以加入专知——Leetcode刷题交流群(请先加微信小助手weixinhao: Rancho_Fang)。
专知网站查看Leetcode刷题日记:
请登录www.zhuanzhi.ai或者点击阅读原文,顶端搜索“Leetcode” 主题,取查看获得专知Leetcode所有资源!如下图所示~
群满,请扫描小助手(备注leetcode),加入专知-LeetCode学习交流群,交流分享~
欢迎转发到你的微信群和朋友圈,分享专业AI知识!
-END-
欢迎使用专知
专知,一个新的认知方式!专注在人工智能领域为AI从业者提供专业可信的知识分发服务, 包括主题定制、主题链路、搜索发现等服务,帮你又好又快找到所需知识。
使用方法>>访问www.zhuanzhi.ai, 或点击文章下方“阅读原文”即可访问专知
中国科学院自动化研究所专知团队
@2017 专知
专 · 知
关注我们的公众号,获取最新关于专知以及人工智能的资讯、技术、算法、深度干货等内容。扫一扫下方关注我们的微信公众号。
点击“阅读原文”,使用专知!