Processing math: 100%

Tuesday, 7 September 2021

BinarySearch - Set Bits

https://binarysearch.com/problems/Set-Bits

Problem

Given an integer n, return the total number of set bits in all integers between 1 and n inclusive.

Constraints

n227

Solution

The i-th least significant bit can be calculate as

(n2i)2i1+nmod2i(2i11)

if and only if

nmod(2i)>=(2i11)

int solve(int n) {
    int two = 2, ans = 0;
    int tmp = n;
    while (tmp) {
        ans += (n / two) * (two >> 1);
        if ((n & (two - 1)) > (two >> 1) - 1) ans += (n & (two - 1)) - (two >> 1) + 1;
        two <<= 1, tmp >>= 1;
    }
    return ans;
}

No comments:

Post a Comment

A Fun Problem - Math

# Problem Statement JATC's math teacher always gives the class some interesting math problems so that they don't get bored. Today t...