Home > Article > Backend Development > Pass the Pillow
2582. Pass the Pillow
Easy
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.
Given the two positive integers n and time, return the index of the person holding the pillow after time seconds.
Example 1:
After five seconds, the 2nd person is holding the pillow.
Example 2:
After two seconds, the 3rd person is holding the pillow.
Example 3:
Constraints:
Solution:
class Solution { /** * @param Integer $n * @param Integer $time * @return Integer */ function passThePillow($n, $time) { $direction = 1; // 1 for forward, -1 for backward $current = 0; // Starting at the first person for ($i = 0; $i < $time; $i++) { $current += $direction; if ($current == $n - 1) { $direction = -1; // Change direction to backward when reaching the last person } elseif ($current == 0) { $direction = 1; // Change direction to forward when reaching the first person } } return $current + 1; // Convert to 1-based index } }
The above is the detailed content of Pass the Pillow. For more information, please follow other related articles on the PHP Chinese website!