• CodeForces 527B Error Correct System


    Error Correct System
    Time Limit:2000MS     Memory Limit:262144KB     64bit IO Format:%I64d & %I64u

    Description

    Ford Prefect got a job as a web developer for a small company that makes towels. His current work task is to create a search engine for the website of the company. During the development process, he needs to write a subroutine for comparing strings S and T of equal length to be "similar". After a brief search on the Internet, he learned about the Hamming distance between two strings S and T of the same length, which is defined as the number of positions in which S and T have different characters. For example, the Hamming distance between words "permanent" and "pergament" is two, as these words differ in the fourth and sixth letters.

    Moreover, as he was searching for information, he also noticed that modern search engines have powerful mechanisms to correct errors in the request to improve the quality of search. Ford doesn't know much about human beings, so he assumed that the most common mistake in a request is swapping two arbitrary letters of the string (not necessarily adjacent). Now he wants to write a function that determines which two letters should be swapped in string S, so that the Hamming distance between a new string S and string T would be as small as possible, or otherwise, determine that such a replacement cannot reduce the distance between the strings.

    Help him do this!

    Input

    The first line contains integer n (1 ≤ n ≤ 200 000) — the length of strings S and T.

    The second line contains string S.

    The third line contains string T.

    Each of the lines only contains lowercase Latin letters.

    Output

    In the first line, print number x — the minimum possible Hamming distance between strings S and T if you swap at most one pair of letters in S.

    In the second line, either print the indexes i and j (1 ≤ i, j ≤ ni ≠ j), if reaching the minimum possible distance is possible by swapping letters on positions i and j, or print "-1 -1", if it is not necessary to swap characters.

    If there are multiple possible answers, print any of them.

    Sample Input

    Input
    9
    pergament
    permanent
    Output
    1
    4 6
    Input
    6
    wookie
    cookie
    Output
    1
    -1 -1
    Input
    4
    petr
    egor
    Output
    2
    1 2
    Input
    6
    double
    bundle
    Output
    2
    4 1

    Hint

    In the second test it is acceptable to print i = 2, j = 3.

     1 #include <stdio.h>
     2 #include <vector>
     3 #include <string.h>
     4 #include <algorithm>
     5 using namespace std;
     6 
     7 char l1[200005],l2[200005];
     8 vector <int> x[35];
     9 vector <int> y[35];
    10 
    11 int main()
    12 {
    13     int n,p,q;
    14     int i,j,k;
    15     while(scanf("%d",&n)!=EOF)
    16     {
    17         scanf("%s",l1+1);
    18         scanf("%s",l2+1);
    19         for(i=0;i<=30;i++)
    20         {
    21             x[i].clear();
    22             y[i].clear();
    23         }
    24         p=-1,q=-1;
    25         int flg=0,s=0;
    26         for(i=1;i<=n;i++)
    27         {
    28             if(l1[i]!=l2[i])
    29             {
    30                 if(flg==0)
    31                 {
    32                     if(x[l2[i]-'a'+1].size()>0)
    33                         p=x[l2[i]-'a'+1][0],q=i,flg=1;
    34                     else if(y[l1[i]-'a'+1].size()>0)
    35                         p=y[l1[i]-'a'+1][0],q=i,flg=1;
    36                 }
    37                 if(flg!=2)
    38                 {
    39                     for(j=0;j<x[l2[i]-'a'+1].size();j++)
    40                     {
    41                         k=x[l2[i]-'a'+1][j];
    42                         if(l2[k]==l1[i])
    43                         {
    44                             p=k,q=i,flg=2;
    45                             break;
    46                         }
    47                     }
    48                 }
    49                 s++;
    50                 x[l1[i]-'a'+1].push_back(i);
    51                 y[l2[i]-'a'+1].push_back(i);
    52             }
    53         }
    54         printf("%d
    ",s-flg);
    55         printf("%d %d
    ",p,q);
    56     }
    57     return 0;
    58 }
    View Code
  • 相关阅读:
    2020前端学习路线 之完结篇
    axios 请求超时,设置重新请求的完美解决方法
    如何终止前端发起的请求?
    轮询与长轮询
    最全React技术栈技术资料汇总(收藏)
    React 服务端渲染完美的解决方案
    将数组格式的字符串转换成数组
    Cannot read property 'map' of undefined
    计算机编码方式简介
    python01之文件处理
  • 原文地址:https://www.cnblogs.com/cyd308/p/4771551.html
Copyright © 2020-2023  润新知