Problem Description
Given n
passengers boarding an airplane with exactly n
seats, the first passenger has lost their ticket and chooses a seat randomly. Subsequent passengers will sit in their assigned seat if available; otherwise, they will choose a random seat. The task is to return the probability that the n
th passenger ends up in their own seat.
Key Insights
- The first passenger's choice affects the seating arrangement for all subsequent passengers.
- If the first passenger takes their own seat, every passenger will sit in their assigned seat, leading to a probability of 1 for the
n
th passenger. - If the first passenger takes the
n
th passenger's seat, then
th passenger will not get their seat, leading to a probability of 0. - The probability oscillates between these two extremes based on the choices made by the first passenger.
- The underlying pattern leads to the conclusion that the probability for the
n
th passenger to sit in their own seat is always 0.5 forn > 2
.
Space and Time Complexity
Time Complexity: O(1)
Space Complexity: O(1)
Solution
The problem can be analyzed using a combinatorial approach. The key insight is that the final outcome for the n
th passenger is determined by the random choice of the first passenger. The scenarios can be summarized as:
- If the first passenger chooses their own seat, the
n
th passenger will definitely get their seat. - If the first passenger chooses the
n
th passenger's seat, then
th passenger will not get their seat. - For all other choices, the problem resets, leading to a recursive situation that ultimately reveals that the probability stabilizes to 0.5 for
n >= 2
.
Thus, the solution can be summarized with a simple conditional check on n
: