Find Latest Group of Size M
Description
Given an array arr that represents a permutation of numbers from 1 to n. You have a binary string of size n that initially has all its bits set to zero.
At each step i (assuming both the binary string and arr are 1-indexed) from 1 to n, the bit at position arr[i] is set to 1. You are given an integer m and you need to find the latest step at which there exists a group of ones of length m. A group of ones is a contiguous substring of 1s such that it cannot be extended in either direction.
Return the latest step at which there exists a group of ones of length exactly m. If no such group exists, return -1.
Example 1:
Input: arr = [3,5,1,2,4], m = 1 Output: 4 Explanation: Step 1: "00100", groups: ["1"] Step 2: "00101", groups: ["1", "1"] Step 3: "10101", groups: ["1", "1", "1"] Step 4: "11101", groups: ["111", "1"] Step 5: "11111", groups: ["11111"] The latest step at which there exists a group of size 1 is step 4.
Example 2:
Input: arr = [3,1,5,4,2], m = 2 Output: -1 Explanation: Step 1: "00100", groups: ["1"] Step 2: "10100", groups: ["1", "1"] Step 3: "10101", groups: ["1", "1", "1"] Step 4: "10111", groups: ["1", "111"] Step 5: "11111", groups: ["11111"] No group of size 2 exists during any step.
Example 3:
Input: arr = [1], m = 1 Output: 1
Example 4:
Input: arr = [2,1], m = 2 Output: 2
Constraints:
n == arr.length1 <= n <= 10^51 <= arr[i] <= n- All integers in
arrare distinct. 1 <= m <= arr.length
Solution(javascript)
/**
* @param {number[]} arr
* @param {number} m
* @return {number}
*/
const findLatestStep = function (arr, m) {
const lengthMap = {}
const binaryArr = []
let steps = -1
arr.forEach((n, index) => {
binaryArr[n] = 1
if (binaryArr[n - 1] >= 1 && binaryArr[n + 1] >= 1) {
const leftCross = binaryArr[n - 1]
const rightCross = binaryArr[n + 1]
lengthMap[binaryArr[n - 1]] -= leftCross
lengthMap[binaryArr[n + 1]] -= rightCross
const num = binaryArr[n - 1] + 1 + binaryArr[n + 1]
binaryArr[n - leftCross] = num
binaryArr[n] = num
binaryArr[n + rightCross] = num
lengthMap[binaryArr[n]] = (lengthMap[binaryArr[n]] || 0) + leftCross + rightCross + 1
} else if (binaryArr[n - 1] >= 1) {
const leftCross = binaryArr[n - 1]
lengthMap[binaryArr[n - 1]] -= leftCross
const num = binaryArr[n - 1] + 1
binaryArr[n - leftCross] = num
binaryArr[n] = num
lengthMap[binaryArr[n]] = (lengthMap[binaryArr[n]] || 0) + leftCross + 1
} else if (binaryArr[n + 1] >= 1) {
const rightCross = binaryArr[n + 1]
lengthMap[binaryArr[n + 1]] -= rightCross
const num = 1 + binaryArr[n + 1]
binaryArr[n + rightCross] = num
binaryArr[n] = num
lengthMap[binaryArr[n]] = (lengthMap[binaryArr[n]] || 0) + rightCross + 1
} else {
lengthMap[binaryArr[n]] = (lengthMap[binaryArr[n]] || 0) + 1
}
if (lengthMap[m] >= 1) {
steps = index + 1
}
// console.log(binaryArr, lengthMap)
})
// console.log(steps)
return steps
}