zoukankan      html  css  js  c++  java
  • Codeforce 163 A. Substring and Subsequence DP

    A. Substring and Subsequence
     

    One day Polycarpus got hold of two non-empty strings s and t, consisting of lowercase Latin letters. Polycarpus is quite good with strings, so he immediately wondered, how many different pairs of "x y" are there, such that x is a substring of string sy is a subsequence of string t, and the content of x and y is the same. Two pairs are considered different, if they contain different substrings of string s or different subsequences of string t. Read the whole statement to understand the definition of different substrings and subsequences.

    The length of string s is the number of characters in it. If we denote the length of the string s as |s|, we can write the string ass = s1s2... s|s|.

    substring of s is a non-empty string x = s[a... b] = sasa + 1... sb (1 ≤ a ≤ b ≤ |s|). For example, "code" and "force" are substrings or "codeforces", while "coders" is not. Two substrings s[a... b] and s[c... d] are considered to be different if a ≠ c or b ≠ d. For example, if s="codeforces", s[2...2] and s[6...6] are different, though their content is the same.

    subsequence of s is a non-empty string y = s[p1p2... p|y|] = sp1sp2... sp|y| (1 ≤ p1 < p2 < ... < p|y| ≤ |s|). For example, "coders" is a subsequence of "codeforces". Two subsequences u = s[p1p2... p|u|] and v = s[q1q2... q|v|] are considered different if the sequencesp and q are different.

    Input

    The input consists of two lines. The first of them contains s (1 ≤ |s| ≤ 5000), and the second one contains t (1 ≤ |t| ≤ 5000). Both strings consist of lowercase Latin letters.

    Output

    Print a single number — the number of different pairs "x y" such that x is a substring of string sy is a subsequence of string t, and the content of x and y is the same. As the answer can be rather large, print it modulo 1000000007 (109 + 7).

    Sample test(s)
    input
    aa
    aa
    output
    5
    input
    codeforces
    forceofcode
    output
    60
    Note

    Let's write down all pairs "x y" that form the answer in the first sample: "s[1...1] t[1]", "s[2...2] t[1]", "s[1...1] t[2]","s[2...2] t[2]", "s[1...2] t[1 2]".

    题意: 

      给出两个串,问a的子串和b的子序列(可以不连续)相同的个数。

    题解:

      dp[i][j]以a[i]结尾的以b[j]结尾相同个数。

      那么 if(a[i] == a[j]) dp[i][j] = dp[i-1][j-1] + dp[i-1][j-2] + ............+dp[i-1][1] + 1

         此时当做前缀和处理就可以了

    #include <iostream>
    #include <cstdio>
    #include <cstring>
    #include <algorithm>
    using namespace std ;
    typedef long long ll;
    const int  N = 5000 + 10;
    const int mod = 1e9 + 7;
    ll dp[N][N];
    int main() {
        char a[N],b[N];
        scanf("%s%s",a+1,b+1);
        int len = strlen(a+1);
        int lenb = strlen(b+1);
        for(int i = 1; i <= len; i++) {
            for(int j = 1; j <= lenb; j++) {
                dp[i][j] = dp[i][j-1] % mod;
                if(a[i] == b[j]) dp[i][j] = (dp[i][j] + dp[i-1][j-1] + 1) % mod;
            }
        }
        ll ans = 0;
        for(int i = 1; i <= len; i++) ans = (ans + dp[i][lenb]) %mod;
        printf("%I64d
    ",ans);
        return 0;
    }
  • 相关阅读:
    poj 2226 Muddy Fields(最小点覆盖)
    hdu 5093 Battle ships(二分图最大匹配)
    poj 3020 Antenna Placement(二分图最大匹配)
    poj 3041 Asteroids(最小点覆盖)
    二分图的一些定理
    hdu 1083 Courses(二分图最大匹配)
    二分图最大匹配模板
    hdu 5094 Maze (BFS+状压)
    hdu 5092 Seam Carving (简单数塔DP,题没读懂,,不过可以分析样例)
    hdu 5090 Game with Pearls (额,, 想法题吧 / 二分图最大匹配也可做)
  • 原文地址:https://www.cnblogs.com/zxhl/p/5149410.html
Copyright © 2011-2022 走看看