Kth Missing Element
Posted: 26 Nov, 2020
Difficulty: Moderate
Given an increasing sequence 'VEC', find the 'Kth' missing contiguous element in the given sequence starting from the leftmost element of the array.
Example :
Given 'VEC' : {1,4,5,7}
'K' : 3
As shown in the above figure, numbers 2, 3, and 6 are missing. Since 6 is the third missing element, it is the required answer.
Input Format :
The first line of input contains an integer ‘T’ denoting the number of test cases.
The first line of each test case contains an integer ‘N’ denoting the number of elements in the array/list.
The second line of each test case contains ‘N’ space-separated integers denoting the elements of the array/list.
The third line of each test case contains an integer ‘K’ denoting the 'Kth' missing element.
Output Format :
For each test case, print the 'Kth' missing contiguous element in the given sequence.
Note :
You don't need to print anything, it has already been taken care of. Just implement the given function.
Follow Up :
Try to solve it in O(log(N)).
Constraints :
1 <= T <= 10^2
1 <= N <= 10^4
1 <= K <= 10^9
-10^9 <= VEC[i] <= 10^9
Time Limit : 1 sec
Approach 1
For each element check whether the current and next element is consecutive or not. If not, take the difference between the two and check till the difference is greater or equal to the given value of ‘K’. If the difference is greater, return current element - ’COUNT’.
Here is the algorithm :
- Run a loop from 0 to ‘N’ - 2 (say, iterator ‘i’).
- If ‘VEC[i] + 1’ is not equal to ‘VEC[i + 1]’, that is, elements are not consecutive, save their difference in a variable (say, ‘DIFFERENCE)’ and decrement by one, which will give the count of absent elements between the elements ‘VEC[i]’ and ‘VEC[i + 1]’.
- If the difference is lesser than ‘K’, deduct this difference from ‘K’. It means the missing element is not present between these 2 elements and the missing element count between these two elements is deducted
- Else if the difference is greater than or equal to ‘K’, it means the missing element exists between the elements ‘VEC[i]’ and ‘VEC[i + 1]’. So, ‘VEC[i]’ + ‘K’ will give the ‘Kth’ missing contiguous element in the given sequence starting from the leftmost element of the array. Turn ‘FLAG’ to ‘true’.
- If ‘FLAG’ is true, return the answer calculated in step 2b.
- Else, the answer will be greater than ‘VEC[n - 1]’, so return ‘VEC[n - 1]’ + ’K’.
Approach 2
At any index, we can check how many elements are missing till the element at that index. Now, using binary search we’ll find the closest index to the required answer.
Here is the algorithm :
- Create 2 variables (say, ‘LOW’ and ‘HIGH’) and initialise them to 0 and ‘N’ - 1 respectively.
- While ‘LOW’ is less than ‘HIGH’ perform the following steps :
- Base condition : if the difference between ‘HIGH’ and ‘LOW’ is 1, return the answer which will be ‘VEC[LOW]’ + (K - total missing elements till 'VEC[LOW]').
- Find ‘MID’ using (‘LOW’ + ’HIGH’) / 2.
- Create a variable (say, ‘leftMiss’) and initialize it to 0.
- Calculate the total missing elements between ‘LOW’ and ‘MID’ using ‘VEC[MID]’ - VEC[LOW]’ - ('MID' - ‘LOW’) and store it in the variable (say, ‘missingElements’).
- If ‘leftMiss’ + ’missingElements’ is greater than ‘K’, this means we need to shift towards left. So, we update the value of ‘HIGH’ to ‘MID’. ‘leftMiss’ is basically the number of missing elements from 0 to ‘START - 1’ and ‘missingElements’ is the number of missing elements from ‘START’ to ‘MID’
- Else, update ‘leftMiss’ to ‘missingElements’ + ‘leftMiss’. Also shift to right by updating ‘LOW’ to ‘MID + 1’.
SIMILAR PROBLEMS
One Odd Occurring
Posted: 17 Apr, 2022
Difficulty: Easy
Min Heap
Posted: 5 May, 2022
Difficulty: Moderate
Left Rotate an Array by One
Posted: 17 May, 2022
Difficulty: Easy
Largest Element in the Array
Posted: 17 May, 2022
Difficulty: Easy
Matrix Boundary Traversal
Posted: 20 May, 2022
Difficulty: Easy