2 Keys Keyboard Problem
Given a positive integer N and a string S initially it is “A”, the task is to minimize the number of operations required to form a string consisting of N numbers of A’s by performing one of the following operations in each step:
- Copy all the characters present in the string S.
- Append all the characters to the string S which are copied last time.
Examples:
Input: N = 3
Output: 3
Explanation:
Below are the operations performed:
Operation 1: Copy the initial string S once i.e., “A”.
Operation 2: Appending the copied string i.e., “A”, to the string S modifies the string S to “AA”.
Operation 3: Appending the copied string i.e., “A”, to the string S modifies the string S to “AAA”.
Therefore, the minimum number of operations required to get 3 A’s is 3.Input: N = 7
Output: 7
Approach: The given problem can be solved based on the following observations:
- If N = P1*P2*Pm where {P1, P2, …, Pm} are the prime numbers then one can perform the following moves:
- First, copy the string and then paste it (P1 – 1) times.
- Similarly, again copying the string and pasting it for (P2 – 1) times.
- Performing M times with the remaining prime number, one will get the string with N number of A’s.
- Therefore, the total number of minimum moves needed is given by (P1 + P2 + … + Pm).
Follow the steps below to solve the problem:
Below is the implementation of the above approach:
C++
|
Time Complexity: O(√N)
Auxiliary Space: O(1)
Attention reader! Don’t stop learning now. Get hold of all the important DSA concepts with the DSA Self Paced Course at a student-friendly price and become industry ready. To complete your preparation from learning a language to DS Algo and many more, please refer Complete Interview Preparation Course.
In case you wish to attend live classes with experts, please refer DSA Live Classes for Working Professionals and Competitive Programming Live for Students.
Original page link
Best Cool Tech Gadgets
Top favorite technology gadgets
0 comments:
Post a Comment