POJ 2192

 1 #include <iostream>
 2 #include <string>
 3 #define MAXN 500
 4 using namespace std;
 5
 6 bool dp[MAXN][MAXN];
 7
 8 int main()
 9 {
10     //freopen("acm.acm","r",stdin);
11     int test;
12     string s_1;
13     string s_2;
14     string s_3;
15     int i;
16     int j;
17     int k;
18     int time = 0;
19     cin>>test;
20     while(test --)
21     {
22         cout<<"Data set "<<++ time<<": ";
23         memset(dp,false,sizeof(dp));
24         cin>>s_1>>s_2>>s_3;
25         dp[0][0] = true;
26         for(i = 0; i <= s_1.length(); ++ i)
27         {
28             for(j = 0; j <= s_2.length(); ++ j)
29             {
30                 if(i-1 >= 0 && dp[i-1][j] && s_1[i-1] == s_3[i+j-1])
31                 {
32             //        if()
33                     {
34                         dp[i][j] = true;
35                     }
36                 }
37                 if(j-1 >= 0 && dp[i][j-1] && s_2[j-1] == s_3[i+j-1])
38                 {
39                     //if()
40                     {
41                         dp[i][j] = true;
42                     }
43                 }
44             }
45         }
46         if(dp[s_1.length()][s_2.length()])
47         {
48             cout<<"yes"<<endl;
49         }
50         else
51         {
52             cout<<"no"<<endl;
53         }
54     }
55 }
时间: 2024-10-11 12:33:42

POJ 2192的相关文章

poj 2192 Zipper(区间dp)

题目链接:http://poj.org/problem?id=2192 思路分析:该问题可以看做dp问题,同时也可以使用dfs搜索求解,这里使用dp解法: 设字符串StrA[0, 1, …, n]和StrB[0,1, .., m]构成字符串Str[0, 1, … , m + n + 1]; 1)状态定义:dp[i, j]表示字符串StrA[0, 1, …, i-1]和字符串StrB[0, 1, .., j-1]构成字符串Str[0, 1, …, i+j-1]: 2)状态转移:如果dp[i-1][

poj 2192 Zipper

题目链接:http://poj.org/problem?id=2192 Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 18658   Accepted: 6651 Description Given three strings, you are to determine whether the third string can be formed by combining the characters in the fi

POJ 2192 &amp;&amp; HDU 1501 Zipper (记忆化搜索)

Zipper Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 16803   Accepted: 5994 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 tw

POJ 2192 Zipper (dp)

链接: http://poj.org/problem?id=2192 题意:就是给定三个字符串A,B,C:判断C能否由AB中的字符组成,同时这个组合后的字符顺序必须是A,B中原来的顺序,不能逆序:例如:A:mnl,B:xyz:如果C为mnxylz,就符合题意:如果C为mxnzly,就不符合题意,原因是z与y顺序不是B中顺序. DP求解:定义dp[i][j]表示A中前i个字符与B中前j个字符是否能组成C中的前 (i+j) 个字符,如果能,标记1,如果不能,标记0: 有了这个定义,我们就可以找出状态

POJ 2192 【DP】

题意: 给三个字符串,判断前两个在相对顺序不变的情况下是否可以组成第三个字符串. 思路: 先说屌丝: dp[i][j]代表1串的前i个和2串的前j个字符在3串的前i+j个字符中最多能够组合出几个字符. 然后状态转移是: 如果stra[i]==strc[i+j]则,dp[i][j]=max(dp[i][j],dp[i-1][j]+1) 同样的若strb[i]==strc[i+j]则,dp[i][j]=max(dp[i][j],dp[i][j-1]+1) 最后判断dp[lena][lenb]是否等于

ACM POJ 2192 Zipper

题目大意:输入字符串a,b,c 要求判断c是否有a,b中的个字符保持原有顺序组合而成. 算法思想: DP 用dp[i][j]表示a的前0~i-1共i个字符和b的前0~j-1共j个字符是否构成c[i+j-1]. 状态转换方程: if(i>=1&&c[i+j-1]==a[i-1]) dp[i][j]=dp[i][j]||dp[i-1][j] if(j>=1&&c[i+j-1]==b[j-1]) dp[i][j]=dp[i][j]||dp[i][j-1] 代码如下:

POJ - 2192 - Zipper (简单DP)

题目传送:Zipper 思路:设状态dp[i][j]为字符串A前i个字符和B前j个字符能否组成C的前i+j个字符,边界为dp[0][0] = 1能则为true,否则false AC代码: #include <cstdio> #include <cstring> #include <iostream> #include <algorithm> #include <cmath> #include <queue> #include <

POJ 2192 :Zipper(DP)

恢复 DP一直以来都没怎么看,觉得很难,也只会抄抄模板和处理一些简单的背包.于是比赛出现了这道比较简单的题还是不会,要开始去学学DP了. 题意:给出3个字符串,分别为A串和B串还有C串,题目保证A的长度+B的长度=C的长度,C里面包含着A和B的字符,然后判断A和B在C里面的字符顺序还是不是和原来的A和B保持原样. 查看题目 做法:建立一个DP数组dp[i][j],第一维i表示使用了A的前i个字符,第二维j表示使用了B的前j个字符,然后赋予1或者0判断是否可以组成.如果此时c[i+j]==a[i]

ACM训练方案-POJ题目分类

ACM训练方案-POJ题目分类 博客分类: 算法 ACM online Judge 中国: 浙江大学(ZJU):http://acm.zju.edu.cn/ 北京大学(PKU):http://acm.pku.edu.cn/JudgeOnline/ 杭州电子科技大学(HDU):http://acm.hdu.edu.cn/ 中国科技大学(USTC):http://acm.ustc.edu.cn/ 北京航天航空大学(BUAA)http://acm.buaa.edu.cn/oj/index.php 南京