CF533E.Correcting Mistakes

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Analyzing the mistakes people make while typing search queries is a complex and an interesting work. As there is no guaranteed way to determine what the user originally meant by typing some query, we have to use different sorts of heuristics.

Polycarp needed to write a code that could, given two words, check whether they could have been obtained from the same word as a result of typos. Polycarpus suggested that the most common typo is skipping exactly one letter as you type a word.

Implement a program that can, given two distinct words SS and TT of the same length nn determine how many words WW of length n+1n+1 are there with such property that you can transform WW into both SS , and TT by deleting exactly one character. Words SS and TT consist of lowercase English letters. Word WW also should consist of lowercase English letters.

输入格式

The first line contains integer nn ( 1<=n<=1000001<=n<=100000 ) — the length of words SS and TT .

The second line contains word SS .

The third line contains word TT .

Words SS and TT consist of lowercase English letters. It is guaranteed that SS and TT are distinct words.

输出格式

Print a single integer — the number of distinct words WW that can be transformed to SS and TT due to a typo.

输入输出样例

  • 输入#1

    7
    reading
    trading
    

    输出#1

    1
    
  • 输入#2

    5
    sweet
    sheep
    

    输出#2

    0
    
  • 输入#3

    3
    toy
    try
    

    输出#3

    2
    

说明/提示

In the first sample test the two given words could be obtained only from word "treading" (the deleted letters are marked in bold).

In the second sample test the two given words couldn't be obtained from the same word by removing one letter.

In the third sample test the two given words could be obtained from either word "tory" or word "troy".

首页