[leetcode] 447. Number of Boomerangs

网友投稿 592 2022-10-20

[leetcode] 447. Number of Boomerangs

[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>& points) { int res=0; for(int i=0;i m; for(int j=0;j

参考文献

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

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:silly- 高并发服务器框架
下一篇:AFormChange- Android表单值修改框架
相关文章

 发表评论

暂时没有评论,来抢沙发吧~