683. K Empty Slots
Description
You have n
bulbs in a row numbered from 1
to n
. Initially, all the bulbs are turned off. We turn on exactly one bulb every day until all bulbs are on after n
days.
You are given an array bulbs
of length n
where bulbs[i] = x
means that on the (i+1)^th
day, we will turn on the bulb at position x
wherei
is 0-indexed andx
is 1-indexed.
Given an integer k
, return the minimum day number such that there exists two turned on bulbs that have exactly k
bulbs between them that are all turned off. If there isn’t such day, return -1
.
Example 1:
1 | Input: bulbs = [1,3,2], k = 1 |
Example 2:
1 | Input: bulbs = [1,2,3], k = 1 |
Constraints:
n == bulbs.length
1 <= n <= 2 * 10^4
1 <= bulbs[i] <= n
bulbs
is a permutation of numbers from1
ton
.0 <= k <= 2 * 10^4
Hints/Notes
- 2024/10/30
- sliding window
- premium
Solution
Language: C++
1 | class Solution { |