You are given two strings ss and tt. 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 11. 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 ss and ttequal.
Input
The first line of the input contains ss. In the second line of the input contains tt. Both strings consist only of lowercase Latin letters. The number of letters in each string is between 1 and 2⋅1052⋅105, inclusive.
Output
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.
Examples
Input
test west
Output
2
Input
codeforces yes
Output
9
Input
test yes
Output
7
Input
b ab
Output
1
Note
In the first example, you should apply the move once to the first string and apply the move once to the second string. As a result, both strings will be equal to "est".
In the second example, the move should be applied to the string "codeforces" 88 times. As a result, the string becomes "codeforces" →→ "es". The move should be applied to the string "yes" once. The result is the same string "yes" →→ "es".
In the third example, you can make the strings equal only by completely deleting them. That is, in the end, both strings will be empty.
In the fourth example, the first character of the second string should be deleted.
不要从左边开始找 - -,从右边开始找,这样快,不容易超时。。
#include <iostream>
#include <string>
#include <algorithm>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <vector>
#include <cmath>
#include <list>
#include <queue>
#include <stack>
#include <map>
#include <set>
using namespace std;
typedef long long ll;
int main()
{ ll count1=0, time;
string a,b;
cin>>a;
cin>>b;
int t=abs((int)(a.size()-b.size()));
if(a.size()>b.size()) a.erase(a.begin(),a.begin()+t);
else if(a.size()<b.size()) b.erase(b.begin(),b.begin()+t);
count1+=t;
if(a==b)
{
printf("%lld",count1);
}
else {
for(int i=a.size()-1;i>=0;i--)
{
if(a[i]==b[i])
{
continue;
}
else{
time=i;
break;
}
}
count1+=2*(time+1);
cout<<count1<<endl;
}
//cout<<t<<endl;
return 0;
}
本文介绍了一种通过删除字符使两个字符串相等的算法。该算法从字符串右侧开始比较,以减少操作次数并提高效率。文章包含了一个示例程序,演示了如何实现这一算法,并给出了几个例子来说明其工作原理。
1331

被折叠的 条评论
为什么被折叠?



