← All problemsSign in

3666. Minimum Operations to Equalize Binary String

LeetCodeMathStringBreadth-First SearchUnion-FindOrdered SetOpen on judge ↗

You are given a binary string s, and an integer k. In one operation, you must choose exactly k different indices and flip each '0' to '1' and each '1' to '0'. Return the minimum number of operations required to make all characters in the string equal to '1'. If it is not possible, return -1. Example 1: Input: s = "110", k = 1 Output: 1 Explanation: - There is one '0' in s. - Since k = 1,

HINT LADDERno hints yet
L1 Observation
L2 Technique
L3 Approach
L4 Pseudo-code
🔒
L5 Full solution
L5 unlocks only if you insist twice
solution.cppC++17

CodeSearch Tutor

Hints, not spoilers — it won’t hand over the full solution unless you insist.

voice by Sarvam AI

Sign in to chat with the tutor and save your progress.

Sign in to start