Editorial for DMOPC '20 Contest 5 P1 - Home Row
Remember to use this editorial only when stuck, and not to copy-paste code from it. Please be respectful to the problem author and editorialist.
Submitting an official solution before solving the problem yourself is a bannable offence.
Submitting an official solution before solving the problem yourself is a bannable offence.
Author:
Note that it is both necessary and sufficient to change all characters that are not part of the longest common prefix of and . Thus, our answer is simply . A simple loop from the front of both strings is enough to compute the length of the longest common prefix in , and that is sufficient to solve the problem.
Time Complexity:
Comments