Codeforces Round #313 (Div. 2)D
5229 단어 codeforces문자열
Today on a lecture about strings Gerald learned a new definition of string equivalency. Two strings a and b of equal length are called equivalent in one of the two cases:
They are equal. If we split string a into two halves of the same size a1 and a2, and string b into two halves of the same size b1 and b2, then one of the following is correct: a1 is equivalent to b1, and a2 is equivalent to b2 a1 is equivalent to b2, and a2 is equivalent to b1 As a home task, the teacher gave two strings to his students and asked to determine if they are equivalent.
Gerald has already completed this home task. Now it’s your turn!
Input The first two lines of the input contain two strings given by the teacher. Each of them has the length from 1 to 200 000 and consists of lowercase English letters. The strings have the same length.
Output Print “YES” (without the quotes), if these two strings are equivalent, and “NO” (without the quotes) otherwise.
Sample test(s) input aaba abaa output YES input aabb abab output NO
제목은 새로운 문자열의 상등을 정의한다. 즉, 현재 두 문자열이 같지 않으면 이 두 문자열을 평균적으로 두 문자열로 나눈다. (짝수로 나누어야 한다. 홀수 길이의 문자열이 같지 않으면 바로 같지 않다.)그리고 전반부와 후반부는 마음대로 배합(두 가지 상황)한 다음에 위의 방법에 따라 동일한지 여부를 판정할 수 있다.
폭력으로 물을 건너갈 수 있는 방법은 계속 돌아가면서 길이가 홀수일 때까지 나누지 않고 판단하는 것이다.기다리면 1로 돌아갑니다.
그러나 우연히 다른 사람의 코드가 병합 정렬 일반 처리와 유사하게 쓰여 있는 것을 보고 (사실은 병합만 하고 병합하지 않는다) 마지막에 둘이 같은지 확인한다.
제목 속의 방법은 끊임없이 분치하는 것이며, 전후 순서의 관계가 없다.그래서 이렇게 하는 게 일리가 있는 것 같은데...자신이 잘 분석하지 못했다고 탓할 수밖에 없다.너무 어리석군..
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#define pb push_back
#define INF 0x3f3f3f3f
using namespace std;
typedef unsigned long long ULL;
typedef long long LL;
const int mod = 1000000007;
const int N = 200005;
char str1[N], str2[N];
int check(int l1, int r1, int l2, int r2)
{
int i, j;
for(i=l1, j=l2; iif(str1[i] != str2[j])
break;
if(i>=r1) return 1;
if((r1 - l1)%2 == 1 || (r2-l2)%2 == 1) return 0;
int mid1 = (l1 + r1)>>1, mid2 = (l2 + r2)>>1;
return ((check(l1, mid1, l2, mid2) && check(mid1, r1, mid2, r2)) || (check(l1, mid1, mid2, r2) && check(mid1, r1, l2, mid2)));
}
void solve()
{
scanf("%s %s", str1, str2);
int len = strlen(str1);
puts(check(0, len, 0, len)?"YES":"NO");
}
int main(void)
{
#ifdef DK1
freopen("/home/dk/ /1.in","r",stdin);
#endif // DK
solve();
return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Codeforces Round #715 Div. 2C The Sports Festival: 구간 DP전형구간 DP의 초전형. 이하, 0-indexed. 입력을 정렬하여 어디서나 시작하고 최적으로 좌우로 계속 유지하면 좋다는 것을 알 수 있습니다. {2000})$의 주문이 된다. 우선, 입력을 소트하여 n개의 요소를 $...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.