Convert 0 to N by adding 1 or multiplying by 2 in minimum steps

Given a positive integer N, the task is to find the minimum number of addition operations required to convert the number 0 to N such that in each operation any number can be multiplied by 2 or add the value 1 to it.
Examples:Â
Input: N = 6
Output: 1
Explanation:
Following are the operations performed to convert 0 to 6:
Add 1      –> 0 + 1 = 1.
Multiply 2  –> 1 * 2 = 2.
Add 1      –> 2 + 1 = 3.Â
Multiply 2  –> 3 * 2 = 6.
Therefore number of addition operations = 2. ÂInput: N = 3
Output: 2
Approach: This problem can be solved by using the Bit Manipulation technique. In binary number representation of N, while operating each bit whenever N becomes odd (that means the least significant bit of N is set) then perform the addition operation. Otherwise, multiply by 2. The final logic to the given problem is to find the number of set bits in N.
Below is the implementation of the above approach: Â
C++
// C++ program for above approach#include <bits/stdc++.h>using namespace std;Â
// Function to count number of// set bits in Nint minimumAdditionOperation(Â Â Â Â unsigned long long int N){Â
    // Stores the count of set bits    int count = 0;Â
    while (N) {Â
        // If N is odd, then it        // a set bit        if (N & 1 == 1) {            count++;        }        N = N >> 1;    }Â
    // Return the result    return count;}Â
// Driver Codeint main(){Â Â Â Â int N = 6;Â Â Â Â cout << minimumAdditionOperation(N);Â
    return 0;} |
Java
// Java program for the above approachimport java.io.*;class GFG {Â
    // Function to count number of    // set bits in N    static int minimumAdditionOperation(int N)    {Â
        // Stores the count of set bits        int count = 0;Â
        while (N > 0) {Â
            // If N is odd, then it            // a set bit            if (N % 2 == 1) {                count++;            }            N = N >> 1;        }Â
        // Return the result        return count;    }Â
    // Driver Code    public static void main(String[] args)    {        int N = 6;        System.out.println(minimumAdditionOperation(N));    }}Â
// This code is contributed by dwivediyash |
Python3
# python program for above approachÂ
# Function to count number of# set bits in Ndef minimumAdditionOperation(N):Â
    # Stores the count of set bits    count = 0Â
    while (N):Â
        # If N is odd, then it        # a set bit        if (N & 1 == 1):            count += 1Â
        N = N >> 1Â
    # Return the result    return countÂ
# Driver Codeif __name__ == "__main__":Â
    N = 6    print(minimumAdditionOperation(N))Â
    # This code is contributed by rakeshsahni. |
C#
// C# program for above approachusing System;public class GFG{         // Function to count number of    // set bits in N    static int minimumAdditionOperation(int N)    {             // Stores the count of set bits        int count = 0;             while (N != 0) {                 // If N is odd, then it            // a set bit            if ((N & 1) == 1) {                count++;            }            N = N >> 1;        }             // Return the result        return count;    }         // Driver Code    static public void Main (){        int N = 6;        Console.Write(minimumAdditionOperation(N));         }}Â
// This code is contributed by AnkThon |
Javascript
<script>// Javascript program for above approachÂ
// Function to count number of// set bits in Nfunction minimumAdditionOperation(N){Â
  // Stores the count of set bits  let count = 0;Â
  while (N)   {       // If N is odd, then it    // a set bit    if (N & (1 == 1)) {      count++;    }    N = N >> 1;  }Â
  // Return the result  return count;}Â
// Driver Codelet N = 6;document.write(minimumAdditionOperation(N));Â
// This code is contributed by saurabh_jaiswal.</script> |
2
Â
Time Complexity: O(log N)
Auxiliary Space: O(1)
Ready to dive in? Explore our Free Demo Content and join our DSA course, trusted by over 100,000 zambiatek!



