UVa:1509 Leet

dfs搜索即可。对于原串的每个字母可能对应火星文里的1、2、3个字符,如果出现矛盾就返回。

用了stl,跑了2.1S。

#include <iostream>
#include <cstdio>
#include <cstring>
#include <string>
#include <cmath>
#include <vector>
#include <queue>
#include <set>
#include <map>
#include <algorithm>
#define ll  long long
#define INF 2139062143
#define inf -2139062144
#define MOD 20071027
#define MAXN  30
using namespace std;
string A,B;
int k;
bool vis[30];
string key[30];
bool dfs(int cur,int pos)
{
    if(cur>=A.size()&&pos>=B.size()) return true;
    if(cur>=A.size()||pos>=B.size()) return false;
    string str;
    int c=A[cur]-'a';
    for(int i=pos,j=0; i<B.size()&&j<k; ++i,++j)
    {
        str+=B[i];
        if(vis[c])
        {
            if(key[c]==str)
                return dfs(cur+1,i+1);
        }
        else
        {
            vis[c]=true;
            key[c]=str;
            if(dfs(cur+1,i+1)) return true;
            vis[c]=false;
        }
    }
    return false;
}
int main()
{
    int T;
    ios::sync_with_stdio(false);
    cin>>T;
    while(T--)
    {
        cin>>k;
        cin>>A>>B;
        memset(vis,0,sizeof(vis));
        if(dfs(0,0)) cout<<1<<endl;
        else cout<<0<<endl;
    }
    return 0;
}


 

你可能感兴趣的:(UVa:1509 Leet)