🎁 Exclusive Offer! Join our Telegram Channel to get **special discounts** and updates! 🚀

🚀 Struggling with coding interviews? We've got you covered! 💡 Practice real questions, sharpen your skills, and land your dream job! 🎯
Question 8 - 100% Working Solution | Buy Now

Description

7 Live
Amazon Prime Games is designing a game. The player needs to pass n rounds sequentially in this game. Rules of play are as follows: - The player loses power[i] health to complete round - The player's health must be greater than 0 at all times. - The player can choose to use armor in any one round. The armor will prevent damage of min(armor, power[il). Determine the minimum starting health for a player to win the game. Example power = [1, 2, 6, 7] armor = 5 Give the player 12 units of health at the beginning of the game. One of the optimal strategies is to use the armor in the third round and only lose 1 unit instead of 6. The health of the player after each round is: Round, health 0. 12 1. 12 - power[0] =12-1=11 2. 11 - power[1] = 11 -2 =9 3.9 - power[2] + armor=9-6+5=8 4. 8 - power[3] =8-7=1 No lower starting health will allow a win. Function Description Complete the function getMinimumValue in the editor below.

Asked in: Amazon

Image of the Question

Question Image Question Image

All Testcases Passed ✔



Passcode Image

Solution


Please login to view the solution