LeetCode in Kotlin

1040. Moving Stones Until Consecutive II

Medium

There are some stones in different positions on the X-axis. You are given an integer array stones, the positions of the stones.

Call a stone an endpoint stone if it has the smallest or largest position. In one move, you pick up an endpoint stone and move it to an unoccupied position so that it is no longer an endpoint stone.

The game ends when you cannot make any more moves (i.e., the stones are in three consecutive positions).

Return an integer array answer of length 2 where:

Example 1:

Input: stones = [7,4,9]

Output: [1,2]

Explanation: We can move 4 -> 8 for one move to finish the game. Or, we can move 9 -> 5, 4 -> 6 for two moves to finish the game.

Example 2:

Input: stones = [6,5,4,3,10]

Output: [2,3]

Explanation: We can move 3 -> 8 then 10 -> 7 to finish the game. Or, we can move 3 -> 7, 4 -> 8, 5 -> 9 to finish the game. Notice we cannot move 10 -> 2 to finish the game, because that would be an illegal move.

Constraints:

Solution

class Solution {
    fun numMovesStonesII(a: IntArray): IntArray? {
        a.sort()
        var i = 0
        val n = a.size
        var low = n
        val high = (a[n - 1] - n + 2 - a[1]).coerceAtLeast(a[n - 2] - a[0] - n + 2)
        for (j in 0 until n) {
            while (a[j] - a[i] >= n) ++i
            low = if (j - i + 1 == n - 1 && a[j] - a[i] == n - 2) low.coerceAtMost(2)
            else low.coerceAtMost(n - (j - i + 1))
        }
        return intArrayOf(low, high)
    }
}