zoj 3791 An Easy Game dp

An Easy Game

Time Limit: 2 Seconds      Memory Limit: 65536 KB

One day, Edward and Flandre play a game. Flandre will show two 01-strings s1 and s2, the lengths of two strings are n. Then, Edward must move exact k steps. In each step, Edward should change exact m positions of s1. That means exact m positions of s1, '0' will be changed to '1' and '1' will be changed to '0'.

The problem comes, how many different ways can Edward change s1 to s2 after k steps? Please calculate the number of the ways mod 1000000009.

Input

Input will consist of multiple test cases and each case will consist of three lines. The first line of each case consist of three integers n (1 ≤ n ≤ 100), k (0 ≤ k ≤ 100), m (0 ≤ mn). The second line of each case is a 01-string s1. The third line of each case is a 01-string s2.

Output

For each test case, you should output a line consist of the result.

Sample Input
3 2 1
100
001
Sample Output
2
Hint
100->101->001
100->000->001

题目大意:给两个01字符串s1,s2,经过K次操作每次对M个取反,求有多少种方案使得s1==s2。

dp[i][j]表示i次操作之后有j个位置不同的方法数,答案就是dp[t][0]。对于dp[i - 1][j],经过一次操作之后假设把t个位置从不同变为相同,剩下m - t个位置从相同变为不同。
那么
dp[i][j + m - t - t] += dp[i - 1][j] * C(j, t) * C(n - j, m - t)
 
 
 
 
 1 #include <iostream>
 2 #include <cstdio>
 3 #include <cstring>
 4 using namespace std;
 5 
 6 typedef __int64 LL;
 7 const int maxn=110;
 8 const int Mod=1000000009;
 9 int n,k,m,C[maxn][maxn];
10 LL d[maxn][maxn];
11 char s1[maxn],s2[maxn];
12 
13 int max(int a,int b){return a>b?a:b;}
14 
15 void init_C()
16 {
17     memset(C,0,sizeof(C));
18     int i,j;
19     for(i=0;i<=100;i++)
20     {
21         C[i][0]=1;
22         for(j=1;j<=i;j++)
23         {
24             C[i][j]=(C[i-1][j-1]+C[i-1][j])%Mod;
25         }
26     }
27 }
28 
29 void solve()
30 {
31     memset(d,0,sizeof(d));
32     int i,j,t,dif=0;
33     for(i=0;i<n;i++) dif+=(s1[i]!=s2[i]?1:0);
34     d[0][dif]=1;
35     for(i=1;i<=k;i++)
36     {
37         for(j=0;j<=n;j++)
38         {
39             for(t=max(0,m-(n-j));t<=j && t<=m;t++)
40             {
41                 d[i][j+m-t-t]=(d[i][j+m-t-t]+d[i-1][j]*C[j][t]%Mod*C[n-j][m-t]%Mod)%Mod;
42             }
43         }
44     }
45     printf("%I64d\n",d[k][0]);
46 }
47 int main()
48 {    
49     init_C();
50     while(~scanf("%d %d %d",&n,&k,&m))
51     {
52         getchar();
53         gets(s1);
54         gets(s2);
55         solve();
56     }
57     return 0;
58 }
 
 

 

 

转载于:https://www.cnblogs.com/xiong-/p/3765498.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值