You are given two binary strings A and B of equal length. You have a type of opertion in which you can swap any two elements of string B. Your task is to find the minimum number of operations required to convert string B into string A. If it is not possible, print -1.
Input Format:
First line contains string A.
Second line contains string B.
Output Format:
Print the minimum number of operations required to convert string B into string A. If it is not possible, print -1.
Constraints:
\(|A| = |B| ; |S| \; refers \; to \; length \; of \; string \; S\)
\(1 \le |A| \le 10^5\)
You can swap the last and second last element in the string B. After swapping string B will become 1110. Therefore, only one operation is required to convert string B into string A.
Please login to use the editor
You need to be logged in to access the code editor
Loading...
Please wait while we load the editor
Login to unlock the editorial
Please login to use the editor
You need to be logged in to access the code editor
Loading...
Please wait while we load the editor