【一天一道LeetCode】#115. Distinct Subsequences
一天一道LeetCode
本系列文章已全部上传至我的github,地址:ZeeCoder‘s Github
欢迎大家关注我的新浪微博,我的新浪微博
欢迎转载,转载请注明出处
(一)题目
Given a string S and a string T, count the number of distinct subsequences of T in S.
A subsequence of a string is a new string which is formed from the original string by deleting some (can be none) of the characters without disturbing the relative positions of the remaining characters. (ie, “ACE” is a subsequence of “ABCDE” while “AEC” is not).
Here is an example:
S = “rabbbit”, T = “rabbit”Return 3.
(二)解题
题目大意:给定字符串T和S,求S的子串中有多少与T相等。
解题思路:S的子串代表在S中删除一些字符组成的字符串,那么可以很容易想到用递归来解决。
如果当前s[i]==s[j],有两种情况,选择该字母(i++,j++)和跳过该字母(i++)
如果s[i]!=s[j],则直接i++.
具体见代码:
class Solution {
public:
int numDistinct(string s, string t) {
if(s.length()==0||t.length()==0) return 0;
int num =0;
dpDistinct(s,t,0,0,num);
return num;
}
void dpDistinct(string& s, string& t , int i , int j,int& num)
{
if(j==t.length()){num++;return;}
if(s[i]==t[j])
{
//choose this words
if(i<s.length()&&j<t.length()) dpDistinct(s, t , i+1, j+1,num);
//not choose this words
if(i<s.length()) dpDistinct(s, t , i+1, j,num);
}
else
//Don't equal
if(i<s.length()) dpDistinct(s, t , i+1, j,num);
}
};
然后……直接超时了。
观察上述代码,发现有很多重复的判断,因此,可以采用动态规划的思想。
开始找状态转移方程。dp[i][j]用来表示s中j之前的子串subs中有多少个不同的subt,其中subt为t中i之前的字符组成的子串。
首先,初始化dp,令dp[0][j]都等于1,因为s中删除所有的字符都能组成空串。
如果t[i] == s[j],那么dp[i][j] = dp[i][j-1]+dp[i-1][j-1]
否则,dp[i][j] = dp[i][j-1]
举例说明一下:s为abbbc,t为abc
dp | 空 | a | b | b | b | c |
---|---|---|---|---|---|---|
空 | 1 | 1 | 1 | 1 | 1 | 1 |
a | 0 | 1 | 1 | 1 | 1 | 1 |
b | 0 | 0 | 1 | 2 | 3 | 3 |
c | 0 | 0 | 0 | 0 | 0 | 3 |
具体解释看代码:
class Solution {
public:
int numDistinct(string s, string t) {
vector<vector<int>> dp;
for(int i = 0 ; i < t.length()+1;i++)
{
vector<int> temp(s.length()+1,0);
dp.push_back(temp);
}
for(int i = 0 ; i < s.length()+1;i++) dp[0][i]=1;//初始化dp
for(int i = 1 ; i < t.length()+1; i++)
{
for(int j = 1 ; j < s.length()+1 ; j++)
{
if(s[j-1]==t[i-1])
{
dp[i][j] = dp[i-1][j-1]+dp[i][j-1];//状态转移方程
}
else
dp[i][j] = dp[i][j-1];
}
}
return dp[t.length()][s.length()];//返回
}
};
【一天一道LeetCode】#115. Distinct Subsequences的更多相关文章
- [LeetCode] 115. Distinct Subsequences 不同的子序列
Given a string S and a string T, count the number of distinct subsequences of S which equals T. A su ...
- [leetcode]115. Distinct Subsequences 计算不同子序列个数
Given a string S and a string T, count the number of distinct subsequences of S which equals T. A su ...
- Java for LeetCode 115 Distinct Subsequences【HARD】
Given a string S and a string T, count the number of distinct subsequences of T in S. A subsequence ...
- leetcode 115 Distinct Subsequences ----- java
Given a string S and a string T, count the number of distinct subsequences of T in S. A subsequence ...
- Leetcode 115 Distinct Subsequences 解题报告
Distinct Subsequences Total Accepted: 38466 Total Submissions: 143567My Submissions Question Solutio ...
- Leetcode#115 Distinct Subsequences
原题地址 转化为求非重路径数问题,用动态规划求解,这种方法还挺常见的 举个例子,S="aabb",T="ab".构造如下地图("."表示空位 ...
- 【LeetCode】115. Distinct Subsequences 解题报告(Python)
作者: 负雪明烛 id: fuxuemingzhu 个人博客: http://fuxuemingzhu.cn/ 目录 题目描述 题目大意 解题方法 动态规划 日期 题目地址:https://leetc ...
- 115. Distinct Subsequences
题目: Given a string S and a string T, count the number of distinct subsequences of T in S. A subseque ...
- [Leetcode][JAVA] Distinct Subsequences
Given a string S and a string T, count the number of distinct subsequences of T in S. A subsequence ...
随机推荐
- three.js 3D 动画场景
Three.js 是一款运行在浏览器中的 3D 引擎,你可以用它创建各种三维场景,包括了摄影机.光影.材质等各种对象.使用它它能让 WebGL 变得更加简单. 下面用Three.js渲染一个物体360 ...
- css3部分整理
1.css弹性盒子属性 父级元素属性的设置 #father{ width: 800px; height: 300px; background-color: darkgray; /*定义父级元素为弹性元 ...
- MySql准备工作
1.linux 下启动mysql 服务 sudo service mysql start 2.登录 mysql -u用户 -p密码 3.显示库 show databases: 4.使用库 use 库名 ...
- Page2
css样式表嵌入网页的4种方法: 定义标记的style属性 <标记 style="样式属性:属性值:..;"> 嵌入外部样式表 <style type=" ...
- MongoDB 数据库引用
MongoDB 引用有两种: 手动引用(Manual References) DBRefs DBRefs vs 手动引用 考虑这样的一个场景,我们在不同的集合中 (address_home, addr ...
- Dockerfile怎么创建镜像
编写完成 Dockerfile 之后,可以通过 docker build 命令来创建镜像. 基本的格式为 docker build [选项] 路径,该命令将读取指定路径下(包括子目录)的 Docker ...
- ajax中xmlhttp.readyState和xmlhttp.status的值及解释
xmlhttp.readyState的值及解释: 0:请求未初始化(还没有调用 open()). 1:请求已经建立,但是还没有发送(还没有调用 send()). 2:请求已发送,正在处理中(通常现在可 ...
- 《An Introduction to Signal Smoothing》译文
最近在做数据平滑相关的工作,正好读到该篇博客,感觉不错,就翻译了一下.原链接:An Introduction to Signal Smoothing 信号平滑简介 噪声无处不在,不管是在采集手机游戏的 ...
- android Spinner控件详解
Spinner提供了从一个数据集合中快速选择一项值的办法.默认情况下Spinner显示的是当前选择的值,点击Spinner会弹出一个包含所有可选值的dropdown菜单,从该菜单中可以为Spinner ...
- RxJava操作符(09-算术/聚合操作&连接操作)
转载请标明出处: http://blog.csdn.net/xmxkf/article/details/51692493 本文出自:[openXu的博客] 目录: 算术聚合 Count Concat ...