주간 대회 2 CodeForces 545B 사고 문제
Little Susie loves strings. Today she calculates distances between them. As Susie is a small girl after all, her strings contain only digits zero and one. She uses the definition of Hamming distance:
We will define the distance between two strings s and t of the same length consisting of digits zero and one as the number of positions i, such that si isn't equal to ti.
As besides everything else Susie loves symmetry, she wants to find for two strings s and t of length n such string p of length n, that the distance from p to s was equal to the distance from p to t.
It's time for Susie to go to bed, help her find such string p or state that it is impossible.
Input
The first line contains string s of length n.
The second line contains string t of length n.
The length of string n is within range from 1 to 105. It is guaranteed that both strings contain only digits zero and one.
Output
Print a string of length n, consisting of digits zero and one, that meets the problem statement. If no such string exist, print on a single line "impossible"(without the quotes).
If there are multiple possible answers, print any of them.
Sample Input
Input
0001
1011
Output
0011
Input
000
111
Output
impossible
Hint
In the first sample different answers are possible, namely — 0010, 0011, 0110, 0111, 1000, 1001, 1100, 1101.
FA
#include<iostream>
#include<cstdio>
#include<cstring>
#include<cstdlib>
using namespace std;
int main()
{
char s3[100002];
char s1[100002],s2[100002];
while(cin>>s1>>s2)
{
int len=strlen(s1);
for(int i=0; i<len; i++)
s3[i]='0';
int num=0,num1=0,num2=0;
for(int i=0; i<len; i++)
{
if(s1[i]=='1'&&s2[i]!='1')
num1++;
else if(s2[i]=='1'&&s1[i]!='1')
num2++;
if(s2[i]==s1[i])
s3[i]=s1[i];
else
num++;
}
if(num%2)
cout<<"impossible
";
else
{
int sum=0;
if(num1>num2)
{
for(int i=0; i<len; i++)
{
if(s1[i]=='1'&&s2[i]=='0')
{
s3[i]='1';
sum++;
if(sum+num2==num/2)
break;
}
}
}
else if(num1<num2)
for(int i=0; i<len; i++)
{
if(s1[i]=='0'&&s2[i]=='1')
{
s3[i]='1';
sum++;
if(sum+num1==num/2)
break;
}
}
//cout<<sum;
for(int i=0; i<len; i++)
cout<<s3[i];
cout<<endl;
}
}
}
먼저 서로 다른 개수가 짝수인지 아닌지를 판단하고, 그렇지 않으면 같은 거리를 찾을 수 없다.만약 짝수가 있다면, 이 짝수의 다른 위치 중 절반이 첫 번째 문자열이고, 다른 절반이 두 번째 문자열이라는 것을 보증하면 된다. 짝수로 나누어 선택하는 방법이나 앞쪽과 뒤쪽을 나누어 선택하는 방법이 있다
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.