Lock Code
Learn this problemProblem statement
You are given an array of integers codeSequence of length n and an integer maxValue. A locking system allows you to modify any number in the array to any integer less than or equal to maxValue at a cost of 1 per change.
Two numbers are co-prime if their greatest common divisor (GCD) is 1. To unlock the repository, you need to select a number from the array that is co-prime with all other numbers in the array.
The lock's code is calculated as the maximum possible value of: selected number - total modification cost
Your task is to determine the lock code by selecting an optimal number from the array after modifications that is co-prime with all other numbers in the array.
Function
decryptCodeLock(codeSequence: int[], maxValue: int) → int
Complete the function decryptCodeLock in the editor with the following parameters:
int codeSequence[n]: the array presented by the code lockint maxValue: the maximum possible value for any element in the array
Returns
int: the lock code
FastPrep's sincere 🌸thanks🌸 go to our exceptional friend for their meaningful, valued contribution!
Examples
Example 1
codeSequence = [3, 2, 4]maxValue = 6return = 4Optimally:
codeSequence' = [3, 2, 5].Return 4 as the answer.
Example 2
codeSequence = [1, 2, 3]maxValue = 6return = 4Optimally, change the second and third elements to 5 and 6 at a cost of 2 units, resulting in [1, 5, 6]. The number 6 is coprime with both 1 and 5. The lock's code is 6 - 2 (cost) = 4.
Example 3
codeSequence = [2, 4, 6, 8]maxValue = 8return = 6Optimally, change the third element to 7 at a cost of 1 unit, resulting in [2, 4, 7, 8]. The number 7 is coprime with 2, 4, and 8. The lock's code is 7 - 1 (cost) = 6.
Constraints
- 1 ≤ n ≤ 10^3
- 1 ≤ maxValue ≤ 10^9
- 1 ≤ codeSequence[i] ≤ maxValue