NOIP2002子串变换
描述
已知有两个字串 A$, B$ 及一组字串变换的规则(至多6个规则):
A1$ -> B1$
A2$ -> B2$
规则的含义为:在 A$中的子串 A1$ 可以变换为 B1$、A2$ 可以变换为 B2$ …。
例如:A$=’abcd’ B$=’xyz’
变换规则为:
‘abc’->‘xu’ ‘ud’->‘y’ ‘y’->‘yz’
则此时,A$ 可以经过一系列的变换变为 B$,其变换的过程为:
‘abcd’->‘xud’->‘xy’->‘xyz’
共进行了三次变换,使得 A$ 变换为B$。
格式
输入格式
第一行为两个字符串,第二行至文件尾为变换规则
A$ B$
A1$ B1$ \
A2$ B2$ |-> 变换规则
… … /
所有字符串长度的上限为 20。
输出格式
若在 10 步(包含 10步)以内能将 A$ 变换为 B$ ,则输出最少的变换步数;否则输出”NO ANSWER!”
限制
每个测试点1s
题解
广搜+map
我不知道为何在vijos一直是5个T,在其它oj都好好的
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 |
#include<iostream> #include<cstdio> #include<cstdlib> #include<algorithm> #include<cmath> #include<cstring> #include<set> #include<queue> #include<map> #define pa pair<int,int> #define mod 1000000007 #define inf 1000000000 #define ll long long using namespace std; int cnt,v[10]; string a,b,x[10],y[10]; string q[500005]; map<string,int> m; bool jud(string a,int now,int k) { int l=x[k].length(); for(int i=0;i<l;i++) if(a[now+i]!=x[k][i])return 0; return 1; } bool bfs() { int head=0,tail=1; q[0]=a; while(head!=tail) { string now=q[head];head++; int l=now.length(),step=m[now]; if(step==10)return 0; for(int i=0;i<l;i++) for(int k=1;k<=cnt;k++) if(l+v[k]>=0&&l+v[k]<=20) if(jud(now,i,k)) { string t=""; for(int j=0;j<i;j++)t+=now[j]; t+=y[k]; for(int j=i+x[k].length();j<l;j++)t+=now[j]; if(m[t])continue; m[t]=step+1; q[tail]=t;tail++; if(t==b){printf("%d\n",step+1);return 1;} } } return 0; } int main() { cin>>a>>b; cnt=1; while(cin>>x[cnt]>>y[cnt])cnt++; cnt--; for(int i=1;i<=cnt;i++)v[i]=y[i].length()-x[i].length(); if(!bfs())puts("NO ANSWER!"); return 0; } |
Subscribe