设为首页 加入收藏

TOP

leetcode - Interleaving String
2015-07-20 17:32:23 来源: 作者: 【 】 浏览:2
Tags:leetcode Interleaving String

Given s1, s2, s3, find whether s3 is formed by the interleaving of s1 and s2.

For example,
Given:
s1 = "aabcc",
s2 = "dbbca",

When s3 = "aadbbcbcac", return true.
When s3 = "aadbbbaccc", return false.

//利用dp解决,dp[i][j]的状态表示为s1[0...i] + s2[0...j]的字符串区间能否组成s3.
//那么,动态转移方程为:
// 1) s1[i-1] == s3[i+j-1] && dp[i-1][j] = true 那么,dp[i][j] = true;
// 2) s2[j-1] == s3[i+j-1] && dp[i][j-1] = true 那么,dp[i][j] = true;
class Solution {
public:
    bool isInterleave(std::string s1, std::string s2, std::string s3) {
		if(s1.size() + s2.size() != s3.size()) return false;
		std::vector
  
   > dp(s1.size()+1,std::vector
   
    (s2.size()+1,0)); dp[0][0] = 1; for (int i = 1; i < s1.size()+1; i++) { if(s1[i-1] == s3[i-1] && dp[i-1][0]) dp[i][0] = true; } for (int i = 1; i < s2.size()+1; i++) { if(s2[i-1] == s3[i-1] && dp[0][i-1]) dp[0][i] = true; } for (int i = 1; i < s1.size() + 1; i++) { for (int j = 1; j < s2.size() + 1; j++) { if(s1[i-1] == s3[i+j-1] && dp[i-1][j]) dp[i][j] = true; if(s2[j-1] == s3[i+j-1] && dp[i][j-1]) dp[i][j] = true; } } return dp[s1.size()][s2.size()]; } };
   
  


】【打印繁体】【投稿】【收藏】 【推荐】【举报】【评论】 【关闭】 【返回顶部
分享到: 
上一篇Effective C++ 7 下一篇Ural 1152 False Mirrors(状压DP..

评论

帐  号: 密码: (新用户注册)
验 证 码:
表  情:
内  容:

·在 Redis 中如何查看 (2025-12-26 03:19:03)
·Redis在实际应用中, (2025-12-26 03:19:01)
·Redis配置中`require (2025-12-26 03:18:58)
·Asus Armoury Crate (2025-12-26 02:52:33)
·WindowsFX (LinuxFX) (2025-12-26 02:52:30)