国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學院 > 開發設計 > 正文

LEETCODE--Number of Boomerangs

2019-11-11 04:15:02
字體:
來源:轉載
供稿:網友

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

熟悉使用map

class Solution {public: int numberOfBoomerangs(vector<pair<int, int>>& points) { int num = 0; for(int i = 0; i < points.size(); i++){ map<long,int> group; for(int j = 0; j < points.size(); j++){ if(i == j) continue; int distance_x = points[j].first - points[i].first; int distance_y = points[j].second - points[i].second; int key = distance_x * distance_x + distance_y * distance_y; ++group[key]; } for(auto& p : group){ int val = p.second; if(val > 1) num += val * (val - 1); } } return num; }};
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 怀柔区| 陆河县| 乌鲁木齐县| 集贤县| 若尔盖县| 深圳市| 辰溪县| 镇赉县| 新田县| 罗甸县| 上虞市| 内丘县| 防城港市| 光泽县| 德州市| 武冈市| 中超| 隆化县| 且末县| 清涧县| 遂宁市| 株洲县| 三穗县| 阿克陶县| 科尔| 邹平县| 孝义市| 云安县| 台东县| 昌邑市| 西昌市| 靖远县| 福鼎市| 蓝山县| 九江县| 拜泉县| 毕节市| 荥阳市| 永寿县| 鄂托克旗| 惠安县|