c语言sscanf函数的用法是什么
274
2022-08-26
[leetcode] 477. Total Hamming Distance
Description
The Hamming distance between two integers is the number of positions at which the corresponding bits are different.
Now your job is to find the total Hamming distance between all pairs of the given numbers.
Example: Input:
4, 14, 2
Output:
6
Explanation:
In binary representation, the 4 is 0100, 14 is 1110, and 2 is 0010 (just showing the four bits relevant in this case). So the answer will be: HammingDistance(4, 14) + HammingDistance(4, 2) + HammingDistance(14, 2) = 2 + 2 + 2 = 6.
Note:
Elements of the given array are in the range of 0 to 10^9Length of the array will not exceed 10^4.
分析
题目的意思是:求出所有数中两两之间的汉明距离。
例子,4,14,2和1:
4: 0 1 0 014: 1 1 1 02: 0 0 1 01: 0 0 0 1
先看最后一列,有三个0和一个1,那么它们之间相互的汉明距离就是3,即1和其他三个0分别的距离累加,然后在看第三列,累加汉明距离为4,因为每个1都会跟两个0产生两个汉明距离,同理第二列也是4,第一列是3。我们仔细观察累计汉明距离和0跟1的个数,可以发现其实就是0的个数乘以1的个数,发现了这个重要的规律,那么整道题就迎刃而解了,只要统计出每一位的1的个数即可。根据规律,只需要统计每一列中1的个数,0的个数,然后相乘,然后加入结果res中,就是答案了。
代码
class Solution {public: int totalHammingDistance(vector 参考文献 [LeetCode] Total Hamming Distance 全部汉明距离
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~