算法提高之字串变换

算法提高之字串变换

  • 核心思想:双向广搜

    • 双向bfs 建立两个队列 一起bfs到中间态
cpp 复制代码
  #include <iostream>
  #include <cstring>
  #include <algorithm>
  #include <queue>
  #include <unordered_map>
  
  using namespace std;
  const int N = 6;
  
  int n;
  string A,B;
  string a[N],b[N];
  
  int extend(queue<string>& q, unordered_map<string, int>&da, unordered_map<string, int>& db, 
      string a[N], string b[N])
  {
      int d = da[q.front()];  //确定当前层数
      while(q.size() && da[q.front()] == d)  //如果是同一层的就搜
      {
          auto t = q.front();
          q.pop();
           
          for(int i=0;i<n;i++)  //遍历所有规则
          {
              for(int j=0;j<t.size();j++)
              {
                  if(t.substr(j,a[i].size()) == a[i])  //有相应的子串
                  {
                      //构造新的字符串
                      string r = t.substr(0,j) + b[i] + t.substr(j+a[i].size());
                      if(db.count(r)) return da[t] + db[r] + 1;  //如果b中已经搜到过
                      if(da.count(r)) continue;
                      da[r] = da[t] + 1;
                      q.push(r);
                  }
              }
          }
      }
      return 11;
  }
  int bfs()
  {
      if(A == B) return 0;
      queue<string> qa,qb;
      unordered_map<string,int> da,db;
      
      qa.push(A), qb.push(B);
      da[A] = db[B] = 0;
      int step = 0;  //记录步数 如果超过10 直接return -1
      while(qa.size() && qb.size())
      {
          int t;
          //优先扩展长度短的那个
          if(qa.size()<qb.size()) t = extend(qa,da,db,a,b);  //注意规则是a->b
          else t = extend(qb,db,da,b,a);  //规则是b->a 反向
          
          if(t <= 10) return t;  //没找到之前会返回一个>10的数
          if(++ step == 10) return -1;
      }
      return -1;
  }
  int main()
  {
      cin>>A>>B;
      while(cin>>a[n]>>b[n]) n++;
      
      int t = bfs();
      if (t == -1) puts("NO ANSWER!");
      else cout << t << endl;
  
  }
相关推荐
penguin_bark2 分钟前
69. x 的平方根
算法
这可就有点麻烦了12 分钟前
强化学习笔记之【TD3算法】
linux·笔记·算法·机器学习
苏宸啊18 分钟前
顺序表及其代码实现
数据结构·算法
lin zaixi()21 分钟前
贪心思想之——最大子段和问题
数据结构·算法
FindYou.21 分钟前
C - Separated Lunch
算法·深度优先
夜雨翦春韭27 分钟前
【代码随想录Day30】贪心算法Part04
java·数据结构·算法·leetcode·贪心算法
Kent_J_Truman39 分钟前
【平方差 / C】
算法
一直学习永不止步40 分钟前
LeetCode题练习与总结:H 指数--274
java·数据结构·算法·leetcode·数组·排序·计数排序
Amor风信子1 小时前
华为OD机试真题---跳房子II
java·数据结构·算法
戊子仲秋1 小时前
【LeetCode】每日一题 2024_10_2 准时到达的列车最小时速(二分答案)
算法·leetcode·职场和发展