码迷,mamicode.com
首页 > 其他好文 > 详细

Codeforces 101628A - Arthur's Language

时间:2017-12-03 15:33:35      阅读:122      评论:0      收藏:0      [点我收藏+]

标签:namespace   mem   codeforce   clu   int   思路   lan   const   sync   

101628A - Arthur‘s Language

思路:dp,状态转移见代码。

代码:

#include<bits/stdc++.h>
using namespace std;
#define ll long long 
#define pb push_back
#define mem(a,b) memset(a,b,sizeof(a))

const int N=1e5+5;
const int MOD=1e9+7;
ll dp[N][11];
int main()
{
    ios::sync_with_stdio(false);
    cin.tie(0);
    string s,t;
    cin>>s>>t;
    for(int j=0;j<=s.size();j++)dp[j][0]=1;
    for(int i=1;i<=t.size();i++)
    {
        for(int j=1;j<=s.size();j++)
        {
            if(s[j-1]==t[i-1])dp[j][i]=(dp[j-1][i]+dp[j-1][i-1])%MOD;
            else dp[j][i]=dp[j-1][i];
        }
    }
    cout<<dp[s.size()][t.size()]<<endl;
    return     0;
} 

 

Codeforces 101628A - Arthur's Language

标签:namespace   mem   codeforce   clu   int   思路   lan   const   sync   

原文地址:http://www.cnblogs.com/widsom/p/7966126.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!