hdu 4055--Number String(DP)
2018-06-17 21:48:56来源:未知 阅读 ()
题目链接
Your task is as follows: You are given a string describing the signature of many possible permutations, find out how many permutations satisfy this signature.
Note: For any positive integer n, a permutation of n elements is a sequence of length n that contains each of the integers 1 through n exactly once.
Each test case occupies exactly one single line, without leading or trailing spaces.
Proceed to the end of file. The '?' in these strings can be either 'I' or 'D'.
#include <iostream> #include <algorithm> #include <cstdio> #include <cstring> using namespace std; typedef long long LL; const LL mod=1e9+7; const int N=1005; char s[N]; LL dp[N][N]; int main() { while(scanf("%s",s+1)!=EOF) { int len=strlen(s+1); memset(dp,0,sizeof(dp)); dp[0][1]=1; for(int i=1;i<=len;i++) { if(s[i]=='I') for(int j=2;j<=i+1;j++) dp[i][j]=(dp[i][j-1]+dp[i-1][j-1])%mod; else if(s[i]=='D') for(int j=i;j>=1;j--) dp[i][j]=(dp[i][j+1]+dp[i-1][j])%mod; else { for(int j=1;j<=i+1;j++) dp[i][j]=(dp[i][j-1]+dp[i-1][j-1])%mod; LL sum=0; for(int j=i;j>=1;j--) { sum=(sum+dp[i-1][j])%mod; dp[i][j]=(dp[i][j]+sum)%mod; } } } LL ans=0; for(int i=1;i<=len+1;i++) ans=(ans+dp[len][i])%mod; printf("%lld\n",ans); } return 0; }
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- 复习C++语法--string与string_view 2020-05-28
- STL之<string> 2020-04-05
- 【题解】Building Strings Gym - 102152E 2020-03-31
- HDU-2955-Robberies(0-1背包) 2020-03-30
- CodeForces 1320D - Reachable Strings 2020-03-20
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash