[LeetCode] Pass the Pillow

2582. Pass the Pillow

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.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
class Solution {
public:
int passThePillow(int n, int time) {
int dir = 0;
while(time >= (n - 1)) {
time -= (n - 1);
dir = !dir;
}
int res = dir ? n : 1;
if(dir) res -= time;
else res += time;
return res;
}
};
Author: Song Hayoung
Link: https://songhayoung.github.io/2023/03/05/PS/LeetCode/pass-the-pillow/
Copyright Notice: All articles in this blog are licensed under CC BY-NC-SA 4.0 unless stating additionally.