hdu 1501 Zipper(DFS)

来源:互联网 发布:soa java 编辑:程序博客网 时间:2024/06/04 20:11

Zipper

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 8638    Accepted Submission(s): 3058


Problem Description
Given three strings, you are to determine whether the third string can be formed by combining the characters in the first two strings. The first two strings can be mixed arbitrarily, but each must stay in its original order.

For example, consider forming "tcraete" from "cat" and "tree":

String A: cat
String B: tree
String C: tcraete


As you can see, we can form the third string by alternating characters from the two strings. As a second example, consider forming "catrtee" from "cat" and "tree":

String A: cat
String B: tree
String C: catrtee


Finally, notice that it is impossible to form "cttaree" from "cat" and "tree".
 

Input
The first line of input contains a single positive integer from 1 through 1000. It represents the number of data sets to follow. The processing for each data set is identical. The data sets appear on the following lines, one data set per line.

For each data set, the line of input consists of three strings, separated by a single space. All strings are composed of upper and lower case letters only. The length of the third string is always the sum of the lengths of the first two strings. The first two strings will have lengths between 1 and 200 characters, inclusive.

 

Output
For each data set, print:

Data set n: yes

if the third string can be formed from the first two, or

Data set n: no

if it cannot. Of course n should be replaced by the data set number. See the sample output below for an example.
 

Sample Input
3cat tree tcraetecat tree catrteecat tree cttaree
 

Sample Output
Data set 1: yesData set 2: yesData set 3: no
 

Source
Pacific Northwest 2004
 

题意:

把B串的按串内字符顺序不变的原则插入A串,问能不能得到C串。

题解:

把C串从前往后进行搜索,记得标记有过的状态。

参考代码:

<span style="font-size:14px;">#include<stdio.h>#include<iostream>#include<string.h>using namespace std;#define M 1005bool vis[M][M];bool fl;char a[M],b[M],c[M];void dfs(int la,int lb,int cnt){if(c[cnt]=='\0')fl=1;vis[la][lb]=1;if(a[la]==c[cnt])dfs(la+1,lb,cnt+1);if(b[lb]==c[cnt])dfs(la,lb+1,cnt+1);if(fl||vis[la][lb])return ;}int main(){int t;scanf("%d",&t);int cas=1;while(t--){fl=0;scanf("%s%s%s",a,b,c);memset(vis,0,sizeof(vis));dfs(0,0,0);printf("Data set %d: ",cas++);if(fl)printf("yes\n");elseprintf("no\n");}return 0;} </span>

0 0