Home > Mobile >  Minimum number of operations to make A and B equal simultaneously
Minimum number of operations to make A and B equal simultaneously

Time:06-12

Given two non-negative integers A and B, find the minimum number of operations to make them equal simultaneously. In one operation, you can:

  • either change A to 2*A
  • or change B to 2*B
  • or change both A and B to A-1, B-1

For example: A = 7, B = 25

Sequence of operations would be:

  1. 6 24
  2. 12 24
  3. 24 24

We cannot make them equal in less than 3 operations

I was asked this coding question in a test a week ago. Cannot think of a solution, it is stuck in my head.The input A and B were somewhat over 10^12 so it is clear that I cannot use a loop else it will exceed time limit.

CodePudding user response:

A slow but working solution:

  1. If they are equal, stop.
  2. If one of them is 0, stop with failure (there is no solution if negative numbers are not allowed).
  3. While both are larger than 1, decrease both.
  4. Now the smaller is 1, the other is larger.
  5. While the smaller has a shorter binary representation, double the smaller.
  6. Continue at step 1.

In step 4, the maximum decreases. In step 5, the absolute difference decreases. Thus eventually the algorithm terminates.

CodePudding user response:

This should give the optimal solution. We have to compare a few different ways and take the best solution.

  1. One working solution is to double the smaller number as many times as it stays below the larger number (can be zero times). Then calculate the difference between the double of the (possibly multiple times) doubled smaller number and the larger number. And decrease the numbers as many times. Then double the smaller number one more time. [If the numbers are equal from the beginning, the solution is trivial instead.] This gives an upper bound of the steps.

  2. Now try out the following optimizations:

2a) Choose a number n between 0 and up to the number of steps of the best solution so far.

2b) Choose one number as A and one number as B (two possibilities).

2c) Now count the applied steps of the following procedure.

  1. Double A n times.

  2. Calculate the smallest power of 2 (=m), with which B * 2^m >= A. m should be at least 1.

  3. Calculate the difference of A with the product from step 4 in a mixed base (correct term?) system with each digit having a positional value of 2^(n 1)-1, which is from the least significant right digit to the left: 1, 3, 7, 15, 31, 63, ... From all possible representations the number must have the smallest crosssum, e.g. 100 for 7 is correct, 021 not. Sidenote: For the least checksum there will mostly be digits 0 and 1 and at most one digit 2, no other digits. There will never be a digit 1 right of a 2.)

  4. Represent the number as m digits by filling the left positions with zero. If the number does not fit, go back to step 2 for another selection.

  5. Take the most significant not processed digit from step 6 and do as many decreasing steps.

  6. Double B.

  7. Repeat from 7. with the next digit; if there are no more digits left, the numbers are equal.

  8. If the number of steps is less than the best solution so far, choose this as the proposed solution.

  9. Go back to step 2 for another selection.

  10. After doing all selections from 2 we should have the optimal solution with the minimum number of steps.

The following examples are from an earlier version of the answer, where A is always the larger number and n=0, so we test only one selection.

Example 17 and 65

Power of 2: 2^2=4; 4x17=68
Difference: 68-65=3
3 = 010=10 in base 7/3/1

Start => 17/65
Decrease. Double. => 32/64
Double. => 64/64

Example 18 and 67

Power of 2: 2^2=4; 4x18=72
Difference: 72-67=5
5 = 012=12 in base 7/3/1

Start => 18/67
Decrease. Double. => 34/66
Decrease. Decrease. Double. => 64/64

Example 10 and 137

Power of 2: 2^4=16; 16*10=160
Difference: 160-137=23
23 = 1101 in base 15/7/3/1

Start => 10/137
Decrease. Double. => 18/136
Decrease. Double. => 34/135
Double. => 68/135
Decrease. Double. => 134/134
  • Related