首页 > 其他 > 详细

Distinct Subsequences

时间:2014-02-17 16:43:53      阅读:337      评论:0      收藏:0      [点我收藏+]

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.

bubuko.com,布布扣
 1 public class Solution {
 2     public int numDistinct(String S, String T) {
 3         int lenS = S.length();
 4         int lenT = T.length();
 5         if(lenS==0) return 0;
 6         if(lenT==0) return 1;
 7         int dp[][] = new int [lenS+1][lenT+1];
 8         for(int i=0;i<=lenS;i++){
 9             dp[i][0] = 1;
10         }
11         for(int i=0;i<=lenT;i++){
12             dp[0][i] = 0;
13         }
14         for(int i=0;i<=lenS;i++){
15             for(int j=0;j<=lenT;j++){
16                 if(S.charAt(i)==T.charAt(j)){
17                     dp[i][j] = dp[i-1][j] + dp[i-1][j-1];
18                 }
19                 else{
20                     dp[i][j] = dp[i-1][j];
21                 }
22             }
23         }
24         return dp[lenS][lenT];
25     }
26 }
View Code

Distinct Subsequences

原文:http://www.cnblogs.com/krunning/p/3552039.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!