B - Delete from the Left

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 ssand tt equal.

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" 88times. 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<stdio.h>
#include<string.h>
#include<algorithm>
using namespace std;
char a[200100],b[200100];
int main()
{
    while(~scanf("%s%s",a,b))
        {
            int l1=strlen(a);
            int l2=strlen(b);
            int tx=l1-1,ty=l2-1;
            int l=max(l1,l2);
            if(b[ty]!=a[tx])
                printf("%d\n",l1+l2);
            else
                {
                    int sum=0;
                    for(int i=0; i<l; i++)
                        {
                            if(b[ty--]==a[tx--])
                                sum++;
                            else 
                            break;
                        }
                    printf("%d\n",l1-sum+l2-sum);
                }
        }
    return 0;
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值