LeetCode in Kotlin

1997. First Day Where You Have Been in All the Rooms

Medium

There are n rooms you need to visit, labeled from 0 to n - 1. Each day is labeled, starting from 0. You will go in and visit one room a day.

Initially on day 0, you visit room 0. The order you visit the rooms for the coming days is determined by the following rules and a given 0-indexed array nextVisit of length n:

Return the label of the first day where you have been in all the rooms. It can be shown that such a day exists. Since the answer may be very large, return it modulo 109 + 7.

Example 1:

Input: nextVisit = [0,0]

Output: 2

Explanation:

On the next day you will visit room nextVisit[0] = 0

On the next day you will visit room (0 + 1) mod 2 = 1

Example 2:

Input: nextVisit = [0,0,2]

Output: 6

Explanation:

Your room visiting order for each day is: [0,0,1,0,0,1,2,…].

Day 6 is the first day where you have been in all the rooms.

Example 3:

Input: nextVisit = [0,1,2,0]

Output: 6

Explanation:

Your room visiting order for each day is: [0,0,1,1,2,2,3,…].

Day 6 is the first day where you have been in all the rooms.

Constraints:

Solution

class Solution {
    fun firstDayBeenInAllRooms(nextVisit: IntArray): Int {
        val dp = IntArray(nextVisit.size)
        val m = 1000000007
        for (i in 1 until dp.size) {
            val steps = 2 * dp[i - 1] - dp[nextVisit[i - 1]] + 2
            dp[i] = if (steps < 0) (steps + m) % m else steps % m
        }
        return dp[dp.size - 1]
    }
}