VOOZH about

URL: https://www.geeksforgeeks.org/dsa/find-the-minimum-possible-health-of-the-winning-player/

⇱ Find the minimum possible health of the winning player - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Find the minimum possible health of the winning player

Last Updated : 10 Jul, 2022

Given an array health[] where health[i] is the health of the ith player in a game, any player can attack any other player in the game. The health of the player being attacked will be reduced by the amount of health the attacking player has. The task is to find the minimum possible health of the winning player.
Examples: 
 

Input: health[] = {4, 6, 8} 
Output:
4 attacks 6, health[] = {4, 2, 8} 
2 attacks 4 twice, health[] = {0, 2, 8} 
2 attacks 8 four times, health[] = {0, 2, 0}
Input: health[] = {4, 1, 5, 3} 
Output:
 


 


Approach: In order to minimize the health of the last player, only the player with the smaller health will attack a player with the larger health and by doing so if only two players are involved then the minimum health of the last player is nothing but the GCD of the initial healths of the two players. So, the result will be the GCD of all the elements of the given array.
Below is the implementation of the above approach: 
 


Output: 
1

 

Time Complexity : O(log(a+b)) ,where a and b are elements of health array.

Space Complexity : O(1) ,as we are not using any extra space.

Comment
Article Tags: