C. Double-ended Strings

C. Double-ended Strings

题面:

You are given the strings a and b, consisting of lowercase Latin letters. You can do any number of the following operations in any order:

if |a|>0 (the length of the string a is greater than zero), delete the first character of the string a, that is, replace a with a2a3…an;
if |a|>0, delete the last character of the string a, that is, replace a with a1a2…an−1;
if |b|>0 (the length of the string b is greater than zero), delete the first character of the string b, that is, replace b with b2b3…bn;
if |b|>0, delete the last character of the string b, that is, replace b with b1b2…bn−1.
Note that after each of the operations, the string a or b may become empty.

For example, if a=“hello” and b=“icpc”, then you can apply the following sequence of operations:

delete the first character of the string a ⇒ a=“ello” and b=“icpc”;
delete the first character of the string b ⇒ a=“ello” and b=“cpc”;
delete the first character of the string b ⇒ a=“ello” and b=“pc”;
delete the last character of the string a ⇒ a=“ell” and b=“pc”;
delete the last character of the string b ⇒ a=“ell” and b=“p”.
For the given strings a and b, find the minimum number of operations for which you can make the strings a and b equal. Note that empty strings are also equal.

Input

The first line contains a single integer t (1≤t≤100). Then t test cases follow.

The first line of each test case contains the string a (1≤|a|≤20), consisting of lowercase Latin letters.

The second line of each test case contains the string b (1≤|b|≤20), consisting of lowercase Latin letters.

Output

For each test case, output the minimum number of operations that can make the strings a and b equal.

Example

input

5
a
a
abcd
bc
hello
codeforces
hello
helo
dhjakjsnasjhfksafasd
adjsnasjhfksvdafdser

output

0
2
13
3
20

题解:

题意中让找出在操作步数最小的状况下使字符串a==b(注意:当a,b字符串都为空时也视为相等),所以我们只需要找出他们相同的子字母集用他们两个的和减去相同子字母集的二倍就是剩下该删除的也就是操作步数。

代码:

#include<iostream>
#include<math.h>
using namespace std;

int main()
{
    int t;
    cin>>t;
    
    while(t--)
    {
        
        string a,b;
        
        cin>>a>>b;
        int ans=0;
       for(int i=0;i<a.size();i++)
       {
           int cnt=0;
           for(int j=0;j<b.size();j++)
           {
               if(a[i]==b[j])
               {
                   while(a[i+cnt]==b[j+cnt]&&i+cnt<a.size()&&j+cnt<b.size())
                   {
                       cnt++;
                   }
               }
               
               ans=max(ans,cnt);
           }
           
       }
       
       cout<<a.size()+b.size()-2*ans<<endl;
    }
}

大家有问题的可以在评论区留言吆,有问必回吆。。。。。

  • 2
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 5
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 5
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值