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;
    }
    



  • 相关阅读:
    mysql 中只能使用 localhost 登录,用ip不能登陆
    在springboot 和 mybatis 项目中想要显示sql 语句进行调试
    从一张表数据导入到另一张表
    mysql 中 delete 子查询的限制
    配置eureka 老是报错connected time out 或者 refused connected
    Linux-TCP 出现 RST 的几种情况
    MySQL-优化之 index merge(索引合并)
    Python-Mac 安装 PyQt4
    PHP-PHP-FPM的max_children一些误区
    Linux-磁盘及网络IO工作方式解析
  • 原文地址:https://www.cnblogs.com/wgwyanfs/p/6752745.html
Copyright © 2011-2022 走看看