Problem Description
Given n
rooms labeled from 0
to n - 1
, you must visit each room according to specific rules defined by an array nextVisit
. Starting from day 0
in room 0
, return the first day where you have visited all rooms, modulo 10^9 + 7
.
Key Insights
- The visiting pattern alternates based on whether the total visits to a room are odd or even.
- The problem can be approached with a simulation of room visits while tracking the count of visits to each room.
- A day is defined as the first instance where all rooms have been visited at least once.
Space and Time Complexity
Time Complexity: O(n)
Space Complexity: O(n)
Solution
The solution involves simulating the room visiting process:
- Maintain a counter for how many times each room has been visited.
- Use a variable to track the current room index based on the visit rules.
- Keep a set or an array to track visited rooms until all rooms have been visited.
- Iterate day by day, updating the room visit count and switching rooms based on the visit rules until all rooms have been visited.