Official

B - Electric Board Editorial by evima


The operation does not change the number of 0s, so if SS and TT have different number of 0s, the objective is unachievable.

Otherwise, assume that the 0s in SS are its a1a_1-th, a2a_2-th, \cdots, aKa_K-th characters, and the 0s in TT are its b1b_1-th, b2b_2-th, \cdots, bKb_K-th characters. We will show that the answer is equal to the number of indices ii (1iK)(1 \leq i \leq K) such that aibia_i \neq b_i.

First, we need at least this number of operations because one operation changes only one of a1,a2,,aKa_1, a_2, \cdots, a_K.

(Illustration of the operation)

Additionally, we can achieve the objective in this number of operations with, for example, the following strategy:

If there exists ii such that ai>bia_i > b_i: Let pp be the minimum ii such that ai>bia_i > b_i. Use the operation to change apa_p to bpb_p.

Otherwise: Let qq be the maximum ii such that ai<bia_i < b_i. Use the operation to change aqa_q to bqb_q.

(Illustration of the strategy)

(The sentences to the left says “The minimum ii such that ai>bia_i > b_i is 44”, “The maximum ii such that ai<bia_i < b_i is 33”, and the one to the right says “We have one less ii such that aibia_i \neq b_i!”)

(Sample Implementations)

posted:
last update:



2025-04-03 (Thu)
22:14:01 +00:00