POJ2192Zipper动态规划DP

Zipper
Time Limit: 1000MS   Memory Limit: 65536K
Total Submissions: 8559   Accepted: 2908

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

3
cat tree tcraete
cat tree catrtee
cat tree cttaree

Sample Output

Data set 1: yes
Data set 2: yes
Data set 3: no

Source

Pacific Northwest 2004
设d[i][j]表示串a前i个字符和串b前j个字符能否组成串c前i+j个字符
d[i][j]=1 if(d[i-1][j]&&a[i]==c[i+j])
d[i][j]=1 if(d[i][j-1]&&b[j]==c[i+j])
边界条件d[0][0]=1;
结果d[n][m]==1输出yes,否则输出no
#include<cstdio> #include<cstring> int d[205][205],x,t,n,m,i,j; int main() { char a[201],b[201],c[401]; scanf("%d",&t); while(t--) { memset(d,0,sizeof(d)); scanf("%s%s%s",a+1,b+1,c+1); n=strlen(a+1); m=strlen(b+1); d[0][0]=1; for(i=0;i<=n;i++) for(j=0;j<=m;j++) if(i^0&&d[i-1][j]&&a[i]==c[i+j]||(j^0&&d[i][j-1]&&b[j]==c[i+j])) d[i][j]=1; printf("Data set %d: %s/n",++x,d[n][m]?"yes":"no"); } }

你可能感兴趣的:(String,tree,Integer,input,processing,each)