Codeforces - 559B - Equivalent Strings - 分治

http://codeforces.com/problemset/problem/559/B

这个题目,分治就好了,每次偶数层可以多一种判断方式,判断它的时间就是logn的(吧),注意奇数层并不是直接退出!题目给了另一种相等的条件。

#include<bits/stdc++.h>
using namespace std;
#define ll long long

char s[200005];
char t[200005];

bool isequal(char *sb,int slen,char *tb,int tlen){
    if(slen!=tlen)
        return 0;
    if(slen==1){
        return (*sb)==(*tb);
    }

    if(slen%2){
        if(strncmp(sb,tb,slen)==0)
            return 1;
        else
            return 0;
    }
    bool q1=isequal(sb,slen/2,tb,slen/2)&&isequal(sb+slen/2,slen/2,tb+slen/2,slen/2);
    if(q1)
        return 1;
    bool q2=isequal(sb,slen/2,tb+slen/2,slen/2)&&isequal(sb+slen/2,slen/2,tb,slen/2);
    if(q2)
        return 1;
    return 0;
}

int main(){
    scanf("%s",s);
    scanf("%s",t);
    if(isequal(s,strlen(s),t,strlen(t))){
        puts("YES");
    }
    else{
        puts("NO");
    }
}

原文地址:https://www.cnblogs.com/Yinku/p/10327643.html

时间: 2024-10-09 21:37:03

Codeforces - 559B - Equivalent Strings - 分治的相关文章

Codeforces 559B Equivalent Strings 等价串

题意:给定两个等长串a,b,判断是否等价.等价的含义为:若长度为奇数,则必须是相同串.若长度是偶数,则将两串都均分成长度为原串一半的两个子串al,ar和bl,br,其中al和bl等价且ar和br等价,或者al和br等价且ar和bl等价. 实际上很水.直接按照题意模拟写个递归分治就可以求.比赛的时候总觉得这样暴力写会TLE,因为算了下大概是4^(log2(n))的复杂度,也就是n^2,所以比赛的时候就想了下,将两个串都按照题意转化为字典序最小串(循环节的最小表示法)然后比较a和b的两个最小表示法是

CodeForces 559B Equivalent Strings

Portal: http://codeforces.com/problemset/problem/559/B 年轻时第一次cf的D题,当时直接写了个递归结果爆炸 做法大概是递归时候按字典序乱搞一下 然后就nlogn水过了 1 #include<iostream> 2 #include<algorithm> 3 #include<set> 4 #include<cstdio> 5 #include<cstdlib> 6 #include<cm

[2016-03-23][codeforces][560][D][Equivalent Strings]

时间:2016-03-23 14:15:39 星期三 题目编号:[2016-03-23][codeforces][560][D][Equivalent Strings] 题目大意:定义两个字符串相等方式,给出两个字符串,问是否相等 分析:递归判断即可 遇到的问题:长度为奇数的字符串一定不相等 #include <iostream> #include <string> using namespace std; int issame(string str1,string str2){

D. Equivalent Strings

D. Equivalent Strings 1 #include <iostream> 2 #include <cstdio> 3 #include <cstring> 4 #include <cmath> 5 #include <algorithm> 6 #include <string> 7 #include <vector> 8 #include <set> 9 #include <map>

[2016-04-26][codeforces][665C - Simple Strings]

时间:2016-04-26 10:11:21 星期二 题目编号:[2016-04-26][codeforces][665C - Simple Strings] 题目大意:给定一个字符串,问最少需要更改多少字符,使得相邻的字母都不一样,输出更改后的字符串 分析: 贪心,从左往右扫一遍数组,更改相同的元素即可 遇到的问题: 注意,相同元素必须更改后面那个元素才是最优的答案. 比如 aaa 这种情况只能更改中间那个 #include<iostream> #include<string>

Equivalent Strings (字符串相等?)

Equivalent Strings E - 暴力求解.DFS Time Limit:2000MS     Memory Limit:262144KB     64bit IO Format:%I64d & %I64u Description Today on a lecture about strings Gerald learned a new definition of string equivalency. Two strings a and b of equal length are

Codeforces Round #313 (Div. 2) D. Equivalent Strings 解题心得

原题: Description 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 sam

Codeforces Round #313 (Div. 1) B.Equivalent Strings

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

Codeforces Round #313 (Div. 2) D.Equivalent Strings (字符串)

感觉题意不太好懂 = =# 给两个字符串 问是否等价等价的定义(满足其中一个条件):1.两个字符串相等 2.字符串均分成两个子串,子串分别等价 因为超时加了ok函数剪枝,93ms过的. #include <iostream> #include <cstring> #define clr(x,c) memset(x,c,sizeof(x)) using namespace std; const int N = 200005; char s[N], t[N]; int sc[30],