作者: 负雪明烛
id: fuxuemingzhu
个人博客: http://fuxuemingzhu.cn/


题目地址:https://leetcode.com/problems/distinct-subsequences/description/

题目描述

Given a string S and a string T, count the number of distinct subsequences of S which equals T.

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).

Example 1:

Input: S = "rabbbit", T = "rabbit"
Output: 3
Explanation: As shown below, there are 3 ways you can generate "rabbit" from S.
(The caret symbol ^ means the chosen letters) rabbbit
^^^^ ^^
rabbbit
^^ ^^^^
rabbbit
^^^ ^^^

Example 2:

Input: S = "babgbag", T = "bag"
Output: 5
Explanation: As shown below, there are 5 ways you can generate "bag" from S.
(The caret symbol ^ means the chosen letters) babgbag
^^ ^
babgbag
^^ ^
babgbag
^ ^^
babgbag
^ ^^
babgbag
^^^

题目大意

求S中有多少个子序列等于T。

解题方法

动态规划

这个题一看就是DP。向字符串序列问题确实有很多都是用DP求解的。

设dp数组dp[i][j]表示S的前j个字符是T的前i个字符的子序列的个数为dp[i][j]。

那么有dp[0][*] == 1,因为这个情况下,只能使用s的空字符串进行匹配t。

如果s[j - 1] == t[i - 1],那么,dp[i][j] = dp[i - 1][j - 1] + dp[i][j - 1],原因是t的前j个字符可以由s的前[i - 1]个字符和t的前[j - 1]个匹配的同时最后一个字符匹配,加上s的前[j - 1]个字符和t的前[i]个字符匹配同时丢弃s的第[j]个字符。

如果s[j - 1] != t[i - 1],那么dp[i][j] = dp[i][j - 1],因为只能是前面的匹配,最后一个字符不能匹配,所以丢弃了。

class Solution:
def numDistinct(self, s, t):
"""
:type s: str
:type t: str
:rtype: int
"""
M, N = len(s), len(t)
dp = [[0] * (M + 1) for _ in range(N + 1)]
for j in range(M + 1):
dp[0][j] = 1
for i in range(1, N + 1):
for j in range(1, M + 1):
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[-1][-1]

日期

2018 年 11 月 19 日 —— 周一又开始了

最新文章

  1. canvas弹动
  2. 红外遥控NEC协议使用总结
  3. .NET面试题解析(06)-GC与内存管理
  4. “wsimport -keep ”生成客户端报错“Use of SOAP Encoding is not supported.”
  5. 101个MySQL 的调节和优化的提示
  6. Android IOS WebRTC 音视频开发总结(五三)-- 国内IM & RTC SDK列表
  7. Django搭建及源码分析(一)
  8. 在sql数据库变量中保存单引号的办法
  9. Android JNI环境要SQLite加密模块简介
  10. css技巧总结
  11. 纯JS单页面赛车游戏代码分享
  12. NOIP 2001 提高组 题解
  13. CCM和GCM
  14. laravel 读写分离源码解析
  15. Linux下FTP服务器(vsftpd)配置:
  16. routing路由模式
  17. WebDriver高级应用实例(9)
  18. Python接口自动化--post提交的四种数据类型 4
  19. Spring JDBC查询数据
  20. [转]Subdirectory Checkouts with git sparse-checkout

热门文章

  1. AnnotationHub, clusterProfiler 进行GO,KEGG注释
  2. nginx_日志切割脚本
  3. CSS3实现字体描边
  4. 分布式服务治理框架Dubbo的前世今生及应用实战
  5. Spark相关知识点(一)
  6. Spark(十)【RDD的读取和保存】
  7. 循环队列/顺序队列(C++)
  8. Linux学习 - 文件系统属性chattr权限
  9. 小程序中使用less(最优方式)
  10. 【Linux】【Basis】CentOS启动流程