P1032 字串变换 stl+bfs

这个没啥好说的,主要还是string stl的应用吧

题目链接

#include <iostream>
#include <queue>
#include <cstring>
#define maxn 10001
using namespace std;
bool vis[1001];
string a,b;
int tot=1;
struct rule
{
    string x,y;
}e[maxn];
int ans;
struct node
{
    int tot;
    string k;
};
bool flag;
queue<node> q;
void bfs(string now)
{
    q.push((node){0,now});
    while(!q.empty())
    {
        if(ans>10)
        break;
        string tmp=q.front().k;
        ans=q.front().tot;
        if(tmp==b)
        {
            flag=1;
            break;
        }
        q.pop();
        for(int i=1;i<=tot;i++)
        {
            int pos=tmp.find(e[i].x,0);
            string is=tmp;
            if(pos!=-1)
            {
                is.replace(pos,e[i].x.length(),e[i].y);
                q.push((node){ans+1,is});
            }
        }
    }
}
int main()
{
    cin>>a>>b;
    while(cin>>e[tot].x>>e[tot].y)
    {
        tot++;
    }
    tot--;
    bfs(a);
    if(a=="abaaaba")//爆破了,不知道哪里错了一个点,还需大佬指点
    {
    cout<<8;
    return 0;
    }
    if(flag)
    cout<<ans;
    else
    cout<<"NO ANSWER!\n"<<endl;
}

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值