All problems
1138HardArrayBit ManipulationQueueSliding WindowPrefix SumBrute-Force Search

Flipping Windows to Raise Every Switch

Tracked in this browser only
Write code

Trains the technique from

LeetCode 995Minimum Number of K Consecutive Bit Flips

This is an original problem, written from a brief that listed the technique, the difficulty, the topics, the function shape and the input bounds — none of that problem's wording, examples, hints or editorials. The link is there so you can map your practice onto the standard set.

Same function shape, different story and different numbers.

A row of switches holds only 0 and 1. One move picks exactly k neighbouring switches and flips every one of them, so each 0 becomes a 1 and each 1 becomes a 0.

Return the fewest moves that leave every switch showing 1, or -1 when no number of moves can do it.

Examples

Example 1

Input
switches = [0, 0, 0, 0], k = 2
Output
2

Flip the first two switches and then the last two.

Example 2

Input
switches = [0, 1], k = 2
Output
-1

Only one window exists and it covers both switches, so flipping it turns the 1 off while turning the 0 on, and the row can never come out all ones.

Example 3

Input
switches = [1, 0, 1, 0, 1, 0, 1], k = 1
Output
3

A window of one switch flips a single switch, so each of the three zeros costs its own move.

Constraints

  • 1 <= k <= switches.length <= 10^5
  • 0 <= switches[i] <= 1

The signature

The editor is preloaded with this. It matches the parent problem's shape, so a solution that works here transfers to a judge unchanged.

Python
def min_k_bit_flips(switches: list[int], k: int) -> int:
Java
public int minKBitFlips(int[] switches, int k)
September 7
Apply