#2582
Easy Algorithms Pass the pillow
Math Simulation
56.6% acceptance
Feb 25, 2026
1100
58
There are n people standing in a line labeled from 1 to n. The first person in the line is holding a pillow initially. Every second, the person holding the pillow passes it to the next person standing in the line. Once the pillow reaches the end of the line, the direction changes, and people continue passing the pillow in the opposite direction.
For example, once the pillow reaches the nth person they pass it to the n - 1th person, then to the n - 2th person and so on.
Given the two positive integers n and time, return the index of the person holding the pillow after time seconds.
Solution
Rust
Time O(1)
Space O(1)
impl Solution {
pub fn pass_the_pillow(n: i32, time: i32) -> i32 {
let cycle = 2 * (n - 1);
let pos = time % cycle;
if pos <= n - 1 {
1 + pos
} else {
1 + cycle - pos
}
}
}