洛谷——P1032 字串变换

题目描述:

已知有两个字串 A,B 及一组字串变换的规则(至多 6 个规则):
A1 -> B1
A2 -> B2
规则的含义为:在A 中的子串 A1 可以变换为 B1 ,A2可以变换为 B2…。
​例如: A =’ abcd ’ BB =’ xyz ’
变换规则为:
‘ abc ’->‘ xu ’ ‘ ud ’->‘ y ’ ‘ y ’->‘ yz ’
则此时, A 可以经过一系列的变换变为 B ,其变换的过程为:
‘ dabcd ’->‘ xud ’->‘ xy ’->‘ xyz ’
共进行了 3 次变换,使得 A 变换为 B 。

解题思路

这是一道广搜题,以原串为起点,遍历所有变换规则,如果能变换,那么把变换后的字串存入队列,同时存入变换到该字串需要几步。需要注意的是,字串可能会有重复,可以使用set或者map去重。对于同一个字串同一个变换规则可能会有多个变换结果,都需要考虑。

参考代码

#include
#include
#include
#include
#include
using namespace std;
string A,B;
string from[10],to[10];
int Min=20;
struct Str{
    string s;
    int d;      //s是变化后的字符串,d表示变化的步数,原串步数位0 
};
void bfs(int k){
    queue q;
    set isOk;
    isOk.insert(A);
    q.push(Str{A,0});
    int pos;
    while (!q.empty()){
        string s1=q.front().s,s2=q.front().s;
        int d=q.front().d;
        q.pop();
        if (d>10) break;
        if (s1==B){
            Min=d;
            break;
        }   
        for (int i=0; i> A >> B;
    int k=0;
    while (cin >> from[k] >> to[k]) k++;    //变化规则数没有规定 
//  cin >> k;
//  for (int i=0; i> from[i] >> to[i];
    bfs(k);
    return 0;
}

你可能感兴趣的:(洛谷题集)