5.29/C
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 ≤ n, i ≠ 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.
제목 은 두 개의 길이 가 N 인 문자열 을 보 여 주 는 것 입 니 다. 두 문자열 에서 해당 위치 에 있 는 알파벳 이 다 를 수 있 습 니 다. 다 르 면 1 을 더 합 니 다. 알파벳 위 치 를 바 꾸 어 누적 치 를 줄 일 수도 있 습 니 다. 바 꾼 두 위치의 알파벳 이 모두 같 으 면 누적 치 는 2 를 빼 고 바 꾼 두 개의 위치 번 호 를 출력 할 수도 있 습 니 다. 바 꾼 후 하나 만 같 을 수도 있 습 니 다.1. 출력 결 과 를 빼 고 출력 위치 번 호 를 지정 합 니 다. 위 치 를 바 꾸 어 누적 값 을 줄 일 수 없다 면 출력 결 과 를 출력 하고 - 1 - 1 을 출력 합 니 다.
이 문 제 는 시합 때 풀 지 못 했 습 니 다. 시간 1 시간 반 입 니 다. 그 신 우 들 이 이렇게 짧 은 시간 안에 풀 수 있다 는 것 에 정말 감 탄 스 럽 습 니 다. 시합 후에 저도 1 시간 이 걸 려 서 야 끝 냈 습 니 다....................................
먼저 두 꼬치 를 훑 어보 고 서로 다른 개 수 를 찾 습 니 다. 그리고 2 차원 배열 로 위치 i 두 꼬치 의 알파벳 이 무엇 인지 기록 합 니 다. 그 다음 에 2 를 줄 일 수 있 는 교체 방법 이 있 는 지 찾 습 니 다. 즉, 2 층 순환 으로 여러 가지 가능성 을 검색 합 니 다. 기 록 된 위치 i 에서 두 글자 가 다 를 때 used [i] [j]! = 0 & i! = j 와 대응 하 는 used [j] [i] 가 있 습 니 다.! = 0 은 바 꿀 수 있 음 을 나타 내 고 위 치 를 기록 한 다음 결 과 를 출력 하면 됩 니 다. 가능 하지 않 으 면 한 번 바 꿀 수 있 는 지 없 는 지 를 찾 아야 합 니 다. 2 층 순환, 먼저 used [i] [j] 를 찾 습 니 다! = 0 & i! =, 그리고 다른 순환 을 열 어 used [k] [i] 를 찾 습 니 다! = 0 & k! = i 또는 used [j] [k]! = 0 & & j! = k 의 경우 위 치 를 기록 하고 검색 을 종료 하고 출력 결 과 를 출력 합 니 다. 최종 적 으로 교체 할 항목 이 없 으 면 출력 - 1 - 1.
코드 는 다음 과 같다.
여기 서 주의해 야 할 것 이 있 습 니 다. 1 을 줄 일 수 있 는 상황 을 찾 을 때 마지막 위치 번호 i, j 가 i < = j 를 만족 시 켜 야 합 니 다.
#include <cstdio>
#include <cstring>
#include<algorithm>
using namespace std;
char str1[200001],str2[200001];
int main()
{
int n,p,set1,set2,ans;
int used[30][30];
memset(used,0,sizeof(used));
scanf("%d",&n);
scanf("%s",str1);
scanf("%s",str2);
ans=0;
set1=-1;
set2=-1;
for (int i=0;i<n;i++)
{
if (str1[i]!=str2[i]) ans++;
used[str1[i]-'a'][str2[i]-'a']=i+1;
}
//printf("%d
",ans);
for (int i=0;i<26;i++)
{
p=1;
for (int j=0;j<26;j++)
if (used[i][j]!=0 && used[j][i]!=0 && i!=j)
{
set1=used[i][j];
set2=used[j][i];
p=0;
break;
}
if(p==0) break;
}
if (set1>0)
{
printf("%d
",ans-2);
printf("%d %d
",set1,set2);
return 0;
}
for (int i=0;i<26;i++)
{
p=1;
for (int j=0;j<26;j++)
if (used[i][j]!=0 && i!=j)
for (int k=0;k<26;k++)
{
if (k!=i && used[k][i]!=0)
{
set1=used[i][j];
set2=used[k][i];
p=0;
break;
}
if (k!=j && used[j][k]!=0)
{
set1=used[i][j];
set2=used[j][k];
p=0;
break;
}
}
if (p==0) break;
}
if (set1>0)
{
printf("%d
",ans-1);
printf("%d %d
",set1,set2);
return 0;
}
printf("%d
",ans);
printf("-1 -1
");
return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.