【noip 2002】字串变换

去题面的传送门
BFS
很暴力很暴力,因为数据范围实在是太小了
wa在了hash上。
以后hash的底数还是选质数吧

#include<iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
#include<queue>
using namespace std;

const int mo=2333,e=301;
int cnt,hash_A,hash_B,Ans;
int la[30],lb[30];
string A,B;
string a[10],b[10];
bool vis[100000];
struct lxt
{
    int hash,num;
    string s;
};
queue<lxt>q;

int bfs()
{
    int lA=A.length();
    int lB=B.length();
    for(int i=0;i<lA;++i) hash_A=(hash_A%mo+(A[i]*e)%mo)%mo;
    q.push((lxt){hash_A,0,A});
    vis[hash_A]=true;
    while(!q.empty())
    {
        string s;
        s=q.front().s;
        int num=q.front().num;
        q.pop();
        int lu=s.length();
        for(int k=1;k<=cnt;++k)
        {
            for(int i=0;i<lu;++i)
            {
                int j;
                for(j=0;j<la[k];++j)
                  if(s[i+j]!=a[k][j]) break;
                if(j==la[k])
                {
                    string ans;
                    int where=i;
                    for(int t=0;t<where;++t) ans+=s[t];
                    ans+=b[k];
                    for(int t=where+la[k];t<lu;++t) ans+=s[t];
                    if(ans==B)
                    {
                        if(num<10)return num+1;
                        return -1;
                    }
                    int hash=0;
                    for(int t=0;t<lu-la[k]+lb[k];++t)
                        hash=((hash%mo+(ans[t])%mo)*e%mo)%mo;
                    if(!vis[hash])
                    {
                        vis[hash]=true;
                        q.push((lxt){hash,num+1,ans});
                    }
                }
            }
        }
    }
    return -1;
}
int main()
{
    cin>>A>>B;
    while(cin>>a[++cnt])
    {
        cin>>b[cnt];
        la[cnt]=a[cnt].length();
        lb[cnt]=b[cnt].length();
    }
    Ans=bfs();
    if(Ans==-1) printf("NO ANSWER!");
    else printf("%d",Ans);
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值