给定正整数N ,任务是对从1到N的所有数字的二进制表示形式的置位总数进行计数。
例子:
Input: N = 3
Output: 4
setBits(1) + setBits(2) + setBits(3) = 1 + 1 + 2 = 4
Input: N = 6
Output: 9
方法:此问题的解决方案已在本文的Set 1和Set 2中发布。在这里,讨论了一种基于动态编程的方法。
- 基本情况: 0中的置位位数为0。
- 对于任何数字n:n和n >> 1都没有相同的置位位数(最右边的位除外)。
示例:n = 11( 101 1),n >> 1 = 5( 101 )…11和5中的相同位标记为粗体。因此,假设我们已经知道设置的位数为5,则只需注意11的最右边的位数为1。setBit(11)= setBit(5)+ 1 = 2 + 1 = 3
最右边的位是1表示奇数,0表示偶数。
递归关系: setBit(n)= setBit(n >> 1)+(n&1)和setBit(0)= 0
我们可以使用自底向上的动态编程方法来解决此问题。
下面是上述方法的实现:
C++
// C++ implementation of the approach
#include
using namespace std;
// Function to return the count of
// set bits in all the integers
// from the range [1, n]
int countSetBits(int n)
{
// To store the required count
// of the set bits
int cnt = 0;
// To store the count of set
// bits in every integer
vector setBits(n + 1);
// 0 has no set bit
setBits[0] = 0;
for (int i = 1; i <= n; i++) {
setBits[i] = setBits[i >> 1] + (i & 1);
}
// Sum all the set bits
for (int i = 0; i <= n; i++) {
cnt = cnt + setBits[i];
}
return cnt;
}
// Driver code
int main()
{
int n = 6;
cout << countSetBits(n);
return 0;
}
Java
// Java implementation of the approach
import java.util.*;
class GFG
{
// Function to return the count of
// set bits in all the integers
// from the range [1, n]
static int countSetBits(int n)
{
// To store the required count
// of the set bits
int cnt = 0;
// To store the count of set
// bits in every integer
int []setBits = new int[n + 1];
// 0 has no set bit
setBits[0] = 0;
// For the rest of the elements
for (int i = 1; i <= n; i++) {
setBits[i] = setBits[i >> 1] + (i & 1);
}
// Sum all the set bits
for (int i = 0; i <= n; i++)
{
cnt = cnt + setBits[i];
}
return cnt;
}
// Driver code
public static void main(String[] args)
{
int n = 6;
System.out.println(countSetBits(n));
}
}
// This code is contributed by Princi Singh
Python3
# Python3 implementation of the approach
# Function to return the count of
# set bits in all the integers
# from the range [1, n]
def countSetBits(n):
# To store the required count
# of the set bits
cnt = 0
# To store the count of set
# bits in every integer
setBits = [0 for x in range(n + 1)]
# 0 has no set bit
setBits[0] = 0
# For the rest of the elements
for i in range(1, n + 1):
setBits[i] = setBits[i // 2] + (i & 1)
# Sum all the set bits
for i in range(0, n + 1):
cnt = cnt + setBits[i]
return cnt
# Driver code
n = 6
print(countSetBits(n))
# This code is contributed by Sanjit Prasad
C#
// C# implementation of the approach
using System;
class GFG
{
// Function to return the count of
// set bits in all the integers
// from the range [1, n]
static int countSetBits(int n)
{
// To store the required count
// of the set bits
int cnt = 0;
// To store the count of set
// bits in every integer
int []setBits = new int[n + 1];
// 0 has no set bit
setBits[0] = 0;
// 1 has a single set bit
setBits[1] = 1;
// For the rest of the elements
for (int i = 2; i <= n; i++)
{
// If current element i is even then
// it has set bits equal to the count
// of the set bits in i / 2
if (i % 2 == 0)
{
setBits[i] = setBits[i / 2];
}
// Else it has set bits equal to one
// more than the previous element
else
{
setBits[i] = setBits[i - 1] + 1;
}
}
// Sum all the set bits
for (int i = 0; i <= n; i++)
{
cnt = cnt + setBits[i];
}
return cnt;
}
// Driver code
static public void Main ()
{
int n = 6;
Console.WriteLine(countSetBits(n));
}
}
// This code is contributed by AnkitRai01
Javascript
输出:
9