zoukankan      html  css  js  c++  java
  • hdu1501&&poj2192 Zipper(DFS)

    转载请注明出处:http://blog.csdn.net/u012860063

    题目链接

    HDU:http://acm.hdu.edu.cn/showproblem.php?pid=1501

    POJ:   http://poj.org/problem?id=2192


    Zipper

    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


    题意:就是找在不变换字符串1和字符串2的字母的顺序的情况下,是否能组成字符串3。


    代码例如以下:

    #include <cstdio>
    #include <cstring> 
    #define N 247
    char a[N], b[N], c[N+N];
    int len1, len2, len3;
    int dfs(int x, int y, int sum)
    {
    	if(sum >len3)
    	return 1;
    	if(a[x]!=c[sum] && b[y]!=c[sum])
    	return 0;
    	if(a[x]==c[sum] && dfs(x+1,y,sum+1))
    	return 1;
    	if(b[y]==c[sum] && dfs(x,y+1,sum+1))
    	return 1;
    	return 0;
    }
    int main()
    {
    	int t, cas = 0;
    	while(~scanf("%d",&t))
    	{
    		while(t--)
    		{
    			scanf("%s%s%s",a+1,b+1,c+1);//从字符串下标为1開始输入 
    			len1 = strlen(a+1);
    			len2 = strlen(b+1);
    			len3 = strlen(c+1);
    			int flag = 0;
    			if(c[len3]==a[len1] || c[len3]==b[len2])//优化,假设C最后的字母是a的最后一个 
    			{										//或者b的最后一个才有可能是由它们组成的 
    				flag = dfs(1, 1, 1);
    			}
    			if(flag == 1)
    			printf("Data set %d: yes
    ",++cas);
    			else
    			printf("Data set %d: no
    ",++cas);
    		}
    	}
    	return 0;
    }
    



  • 相关阅读:
    STL:set/multiset用法详解
    STL:list用法详解
    STL:deque用法详解
    STL:vector容器用法详解
    Axure RP chrome插件显示已损坏或者无法安装的解决方法
    怎样知道自己机器的出口网关IP(即外部IP)
    [Selenium]怎样验证页面是否有无变化
    [Selenium]刷新页面 Refresh page
    [SoapUI]怎样获取隐藏元素的文本内容Get text of hidden element
    [SoapUI]怎样从应答报文中获取某个字段的值,然后用其改写某个变量
  • 原文地址:https://www.cnblogs.com/wgwyanfs/p/6752745.html
Copyright © 2011-2022 走看看