305306: CF1005B. Delete from the Left
Memory Limit:256 MB
Time Limit:1 S
Judge Style:Text Compare
Creator:
Submit:0
Solved:0
Description
Delete from the Left
题意翻译
有两个字符串 $s$ 和 $t$,每次操作可以删除一个字符串的第一个字符(如果该字符串为空串则不能删除),求让 $s$ 和 $t$ 相同的最小操作数。题目描述
You are given two strings $ s $ and $ t $ . In a single move, you can choose any of two strings and delete the first (that is, the leftmost) character. After a move, the length of the string decreases by $ 1 $ . You can't choose a string if it is empty. For example: - by applying a move to the string "where", the result is the string "here", - by applying a move to the string "a", the result is an empty string "". You are required to make two given strings equal using the fewest number of moves. It is possible that, in the end, both strings will be equal to the empty string, and so, are equal to each other. In this case, the answer is obviously the sum of the lengths of the initial strings. Write a program that finds the minimum number of moves to make two given strings $ s $ and $ t $ equal.输入输出格式
输入格式
The first line of the input contains $ s $ . In the second line of the input contains $ t $ . Both strings consist only of lowercase Latin letters. The number of letters in each string is between 1 and $ 2\cdot10^5 $ , inclusive.
输出格式
Output the fewest number of moves required. It is possible that, in the end, both strings will be equal to the empty string, and so, are equal to each other. In this case, the answer is obviously the sum of the lengths of the given strings.
输入输出样例
输入样例 #1
test
west
输出样例 #1
2
输入样例 #2
codeforces
yes
输出样例 #2
9
输入样例 #3
test
yes
输出样例 #3
7
输入样例 #4
b
ab
输出样例 #4
1