1375. Bulb Switcher III
Previous1374. Generate a String With Characters That Have Odd CountsNext1376. Time Needed to Inform All Employees
Last updated
Last updated
https://leetcode.com/problems/bulb-switcher-iii
There is a room with n
bulbs, numbered from 1
to n
, arranged in a row from left to right. Initially, all the bulbs are turned off.
At moment k
(for k
from 0
to n - 1
), we turn on the light[k]
bulb. A bulb changes color to blue only if it is on and all the previous bulbs (to the left) are turned on too.
Return the number of moments in which all turned-on bulbs are blue.
Example 1:
Example 2:
Example 3:
Example 4:
Example 5:
Constraints:
n == light.length
1 <= n <= 5 * 104
light
is a permutation of the numbers in the range [1, n]