1. 程式人生 > 其它 >2022.3.19

2022.3.19

藍書

AcWing 190. 字串變換

一開始用的是雙向bfs,但只過了4個點,但是硬是要調,調了一下午還是沒調出來。。後面換成普通bfs寫發現也能過而且程式碼更少看來不能老是死磕,思路就是直接開佇列按字串的位置找能換的字串,如果最後換到和b一樣說明成功了並且操作小於10說明成功了,否則輸出-1。

#include<iostream>
#include<cstdio>
#include<algorithm>
#include<cstring>
#include<cmath>
#include<queue>
using namespace std;
typedef long long ll;
typedef pair<int,int> pii;
const int N=100,INF=1e8;
string aa[10], bb[10];
string a, b;
int cnt;
struct node
{
    string x;
    int tt;
};
int bfs()
{
    if(a==b)
        return 0;
    queue<node> que;
    que.push({a, 0});
    while(que.size())
    {
        auto t = que.front();
        que.pop();
        string s = t.x;
        int tt = t.tt;
        if(tt>=10)
            return -1;
        for (int i = 0; i < cnt;i++)
        {
            int pos = s.find(aa[i],0);
            while(pos!=-1)
            {
                node t2;
                t2.x = s;
                t2.tt = tt + 1;
                t2.x.replace(pos, aa[i].size(), bb[i]);
                if(t2.x==b)
                {
                    return t2.tt;
                }
                que.push(t2);
                pos = s.find(aa[i], pos + 1);
            }
        }
    }
    return -1;
}
int main()
{
    ios::sync_with_stdio(false);
    cin.tie(0);
    cin >>a>> b;
    while(cin>>aa[cnt]>>bb[cnt])
    {
        cnt++;
    }
    int ans = bfs();
    if(ans!=-1)
    {
        cout << ans << '\n';
    }
    else
        cout << "NO ANSWER!" << '\n';
    return 0;
}