Open In App

Decrease and Conquer

Improve
Improve
Like Article
Like
Save
Share
Report

As divide-and-conquer approach is already discussed, which include following steps: Divide the problem into a number of subproblems that are smaller instances of the same problem. Conquer the sub problems by solving them recursively. If the subproblem sizes are small enough, however, just solve the sub problems in a straightforward manner. Combine the solutions to the sub problems into the solution for the original problem. Similarly, the approach decrease-and-conquer works, it also include following steps: Decrease or reduce problem instance to smaller instance of the same problem and extend solution. Conquer the problem by solving smaller instance of the problem. Extend solution of smaller instance to obtain solution to original problem . Basic idea of the decrease-and-conquer technique is based on exploiting the relationship between a solution to a given instance of a problem and a solution to its smaller instance. This approach is also known as incremental or inductive approach.

Decrease and conquer is a technique used to solve problems by reducing the size of the input data at each step of the solution process. This technique is similar to divide-and-conquer, in that it breaks down a problem into smaller subproblems, but the difference is that in decrease-and-conquer, the size of the input data is reduced at each step. The technique is used when it’s easier to solve a smaller version of the problem, and the solution to the smaller problem can be used to find the solution to the original problem.

  1. Some examples of problems that can be solved using the decrease-and-conquer technique include binary search, finding the maximum or minimum element in an array, and finding the closest pair of points in a set of points.
  2. The main advantage of decrease-and-conquer is that it often leads to efficient algorithms, as the size of the input data is reduced at each step, reducing the time and space complexity of the solution. However, it’s important to choose the right strategy for reducing the size of the input data, as a poor choice can lead to an inefficient algorithm.

“Divide-and-Conquer” vs “Decrease-and-Conquer”:

As per Wikipedia, some authors consider that the name “divide and conquer” should be used only when each problem may generate two or more subproblems. The name decrease and conquer has been proposed instead for the single-subproblem class. According to this definition, Merge Sort and Quick Sort comes under divide and conquer (because there are 2 sub-problems) and Binary Search comes under decrease and conquer (because there is one sub-problem).

Implementations of Decrease and Conquer :

This approach can be either implemented as top-down or bottom-up. Top-down approach : It always leads to the recursive implementation of the problem. Bottom-up approach : It is usually implemented in iterative way, starting with a solution to the smallest instance of the problem.

Variations of Decrease and Conquer :

There are three major variations of decrease-and-conquer:

  1. Decrease by a constant
  2. Decrease by a constant factor
  3. Variable size decrease

Decrease by a Constant : In this variation, the size of an instance is reduced by the same constant on each iteration of the algorithm. Typically, this constant is equal to one , although other constant size reductions do happen occasionally. Below are example problems :

Decrease by a Constant factor: This technique suggests reducing a problem instance by the same constant factor on each iteration of the algorithm. In most applications, this constant factor is equal to two. A reduction by a factor other than two is especially rare. Decrease by a constant factor algorithms are very efficient especially when the factor is greater than 2 as in the fake-coin problem. Below are example problems :

Variable-Size-Decrease : In this variation, the size-reduction pattern varies from one iteration of an algorithm to another. As, in problem of finding gcd of two number though the value of the second argument is always smaller on the right-handside than on the left-hand side, it decreases neither by a constant nor by a constant factor. Below are example problems :

There may be a case that problem can be solved by decrease-by-constant as well as decrease-by-factor variations, but the implementations can be either recursive or iterative. The iterative implementations may require more coding effort, however they avoid the overload that accompanies recursion. Reference : Anany Levitin Decrease and conquer

Advantages of Decrease and Conquer:

  1. Simplicity: Decrease-and-conquer is often simpler to implement compared to other techniques like dynamic programming or divide-and-conquer.
  2. Efficient Algorithms: The technique often leads to efficient algorithms as the size of the input data is reduced at each step, reducing the time and space complexity of the solution.
  3. Problem-Specific: The technique is well-suited for specific problems where it’s easier to solve a smaller version of the problem.

Disadvantages of Decrease and Conquer:

  1. Problem-Specific: The technique is not applicable to all problems and may not be suitable for more complex problems.
  2. Implementation Complexity: The technique can be more complex to implement when compared to other techniques like divide-and-conquer, and may require more careful planning.

Reference Book:

“Introduction to Algorithms” by Thomas H. Cormen, Charles E. Leiserson, Ronald L. Rivest, and Clifford Stein is a classic textbook that covers the basics of algorithms, including the decrease-and-conquer technique. This book provides a comprehensive overview of algorithms and is a useful resource for students and professionals interested in the field of computer science.


Last Updated : 15 Feb, 2023
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads