B. Error Correct System
time limit per test

2 seconds

memory limit per test

256 megabytes

input

standard input

output

standard output

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 test(s)
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
Note

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


题意:给两个长度为n的字符串s1和s2,交换s1或s2中的两个字符使它们尽量相等。

先用一个cnt[i][j]数组记录不相等时的位置。

代码:
#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>
#include <cmath>
#include <string>
#include <map>
#define maxn 200005
#define FRE(i,a,b) for(i = a; i <= b; i++)
#define FRL(i,a,b) for(i = a; i < b; i++)
#define mem(t, v) memset ((t) , v, sizeof(t))
#define sf(n) scanf("%d", &n)
#define sff(a,b) scanf("%d %d", &a, &b)
#define sfff(a,b,c) scanf("%d %d %d", &a, &b, &c)
#define pf printf
typedef long long ll;
using namespace std; char s1[maxn],s2[maxn];
int cnt[30][30];
int n; int main()
{
int i,j,k;
while (~sf(n))
{
FRL(i,0,30)
FRL(j,0,30)
cnt[i][j]=0;
scanf("%s%s",s1,s2);
int ans=0;
FRL(i,0,n)
{
if (s1[i]!=s2[i])
{
ans++; //总的不相等的个数
cnt[s1[i]-'a'][s2[i]-'a']=i+1;
}
}
int num=0,s=-1,t=-1;
bool flag=false;
FRL(i,0,26)
{
FRL(j,0,26)
{
if (i!=j)
{
if (cnt[i][j]>0) //cnt[i][j]位置不相等('a'+i相应着'a'+j)
{
if (cnt[j][i]>0) //看是否有某个位置'a'+j相应着'a'+i,有的话就交换
{
s=cnt[i][j];
t=cnt[j][i];
num=2;
flag=true;
break;
}
else
{
FRL(k,0,26)
{
if (cnt[k][i]>0)
{
s=cnt[i][j];
t=cnt[k][i];
num=1;
}
}
}
}
}
}
if (flag) break;
}
pf("%d\n%d %d\n",ans-num,s,t);
}
return 0;
}

最新文章

  1. CentOS 7 Mysql yum源
  2. 【一】我眼中的FeatureLayer
  3. 2014-2015 ACM-ICPC, NEERC, Moscow Subregional Contest F. Friends
  4. CSS样式 让你的输入的小写自动变成大写。
  5. 关于UIView的autoresizingMask属性的研究【转】
  6. Redis基础知识之————如何处理客户端连接
  7. oracle锁机制
  8. hibernate的id生成策略
  9. Android应用程序与SurfaceFlinger服务的关系概述和学习计划
  10. Python学习_10__python2到python3
  11. Inno Setup 自定义界面心得
  12. windows下安装mongoDB以及配置启动
  13. PHP冒泡排序、选择排序、插入排序
  14. nginx 错误502 upstream sent too big header while reading response header from upstream
  15. Rsync+unison双向文件同步
  16. Socket用线程池处理服务
  17. LeetCode题解之 Letter Case Permutation
  18. Protocol Buffers java
  19. jquery ajax 赋值问题, 后面程序判断逻辑用
  20. Docker(一):入门教程

热门文章

  1. cuda输出
  2. JavaSE-19 IO
  3. js进行的一些判断
  4. RabbitMQ 基础概念介绍
  5. JAVA基础——设计模式之装饰者模式
  6. 管理Fragments
  7. 三菱PLC FB库函数调用方法 (Gx Work2版本)
  8. Leetcode 214.最短回文串
  9. 九度oj 题目1061:成绩排序
  10. 总结:常用的Linux系统监控命令(2)