hdu 4869 Turn the pokers(组合数+费马小定理)

Problem Description

During summer vacation,Alice stay at home for a long time, with nothing to do. She went out and bought m pokers, tending to play poker. But she hated the traditional gameplay. She wants to change. She puts these pokers face down, she decided to flip poker n times, and each time she can flip Xi pokers. She wanted to know how many the results does she get. Can you help her solve this problem?

Input

The input consists of multiple test cases.  Each test case begins with a line containing two non-negative integers n and m(0<n,m<=100000).  The next line contains n integers Xi(0<=Xi<=m).

Output

Output the required answer modulo 1000000009 for each test case, one per line.

Sample Input

3 4
3 2 3
3 3
3 2 3

Sample Output

8
3

Hint

For the second example:
0 express face down,1 express face up
Initial state 000
The first result:000->111->001->110
The second result:000->111->100->011
The third result:000->111->010->101
So, there are three kinds of results(110,011,101)

题意:对于m张牌给出n个操作,每次操作选择a[i]张牌进行翻转,问最终得到几个不同的状态

思路:在n张牌选k张,很容易想到组合数,但是关键是怎么进行组合数计算呢?我们可以发现,在牌数固定的情况下,总共进行了sum次操作的话,其实有很多牌是经过了多次翻转,而每次翻转只有0和1两种状态,那么,奇偶性就出来了,也就是说,无论怎么进行翻牌,最终态无论有几个1,这些1的总数的奇偶性是固定的。

那么我们现在只需要找到最大的1的个数和最小的1的个数,之后我们需要找到最少有i个1,以及最大有j个1;i的情况就是有1就翻1,j的情况就是有0就翻0,而中间的情况时,取偶数步数,一半翻0,一半翻1,保持不变,所以可以确定i,i+2,i+4,...,j-2,j都能被翻到。最后ans=∑C(m,k)(i<=k<=j&&k%2==i%2)。

然后再这个区间内进行组合数的求解即可

但是又有一个问题出来了,数据很大,进行除法是一个不明智的选择,但是组合数公式必定有除法

C(n,m) = n!/(m!*(n-m)!)

但是我们知道费马小定理a^(p-1)=1%p

那么a^(p-1)/a = 1/a%p 得到 a^(p-2) = 1/a%p

发现了吧?这样就把一个整数变成了一个分母!

于是便得到sum+=((f[m]%mod)*(quickmod((f[i]*f[m-i])%mod,mod-2)%mod))%mod

 1 #include<iostream>
 2 #include<cstdio>
 3 #include<cstring>
 4 #include<algorithm>
 5 #include<stdlib.h>
 6 using namespace std;
 7 #define N 100006
 8 #define ll long long
 9 #define MOD 1000000009
10 ll n,m;
11 ll a[N];
12 ll fac[N];
13 ll pow_mod(ll  a,ll  i)
14 {
15      if(i==0)
16         return 1%MOD;
17      ll t=pow_mod(a,i/2);
18      ll ans=t*t%MOD;
19      if(i%2==1)
20        ans=ans*a%MOD;
21       return ans;
22  }
23  ll work(ll m,ll i)
24  {
25      return ( (fac[m]%MOD)* ( pow_mod(fac[i]*fac[m-i]%MOD ,MOD-2)%MOD))%MOD;
26  }
27
28 int main()
29 {
30     fac[0]=1;
31     for(ll i=1;i<N;i++) fac[i]=fac[i-1]*i%MOD;
32
33     while(scanf("%I64d%I64d",&n,&m)==2)
34     {
35         ll x;
36         ll l=0,r=0;
37         ll p,q;
38         for(ll i=0;i<n;i++)
39         {
40             scanf("%I64d",&x);
41             //求下限
42             if(l>=x) p=l-x;
43             else if(r>=x) p=((l&1)==(x&1)?0:1);
44             else p=x-r;
45
46             //求上限
47             if(r+x<=m) q=r+x;
48             else if(l+x<=m) q=(((l+x)&1)==(m&1)?m:m-1);
49             else q=2*m-(l+x);
50
51             l=p;
52             r=q;
53         }
54         ll ans=0;
55         for(int i=l;i<=r;i+=2)
56         {
57             ans=ans+work(m,i);
58             ans%=MOD;
59         }
60         printf("%I64d\n",ans);
61     }
62     return 0;
63 }

附上大神的代码:

 1 #include <iostream>
 2 #include <stdio.h>
 3 #include <string.h>
 4 #include <algorithm>
 5 using namespace std;
 6 #define mod 1000000009
 7 #define LL __int64
 8 #define maxn 100000+5
 9
10 LL f[maxn];
11
12 void set()
13 {
14     int i;
15     f[0] = 1;
16     for(i = 1; i<maxn; i++)
17         f[i] = (f[i-1]*i)%mod;
18 }
19
20 LL quickmod(LL a,LL b)
21 {
22     LL ans = 1;
23     while(b)
24     {
25         if(b&1)
26         {
27             ans = (ans*a)%mod;
28             b--;
29         }
30         b/=2;
31         a = ((a%mod)*(a%mod))%mod;
32     }
33     return ans;
34 }
35
36 int main()
37 {
38     int n,m,i,j,k,l,r,x,ll,rr;
39     set();
40     while(~scanf("%d%d",&n,&m))
41     {
42         l = r = 0;
43         for(i = 0; i<n; i++)
44         {
45             scanf("%d",&x);
46             //计算最小的1的个数,尽可能多的让1->0
47             if(l>=x) ll = l-x;//当最小的1个数大于x,把x个1全部翻转
48             else if(r>=x) ll = ((l%2)==(x%2))?0:1;//当l<x<=r,由于无论怎么翻,其奇偶性必定相等,所以看l的奇偶性与x是否相同,相同那么知道最小必定变为0,否则变为1
49             else ll = x-r;//当x>r,那么在把1全部变为0的同时,还有x-r个0变为1
50             //计算最大的1的个数,尽可能多的让0->1
51             if(r+x<=m) rr = r+x;//当r+x<=m的情况下,全部变为1
52             else if(l+x<=m) rr = (((l+x)%2) == (m%2)?m:m-1);//在r+x>m但是l+x<=m的情况下,也是判断奇偶,同态那么必定在中间有一种能全部变为1,否则至少有一张必定为0
53             else rr = 2*m-(l+x);//在l+x>m的情况下,等于我首先把m个1变为了0,那么我还要翻(l+x-m)张,所以最终得到m-(l+x-m)个1
54
55             l = ll,r = rr;
56         }
57         LL sum = 0;
58         for(i = l; i<=r; i+=2)//使用费马小定理和快速幂的方法求和
59             sum+=((f[m]%mod)*(quickmod((f[i]*f[m-i])%mod,mod-2)%mod))%mod;
60         printf("%I64d\n",sum%mod);
61     }
62
63     return 0;
64 }

时间: 2024-10-11 13:33:08

hdu 4869 Turn the pokers(组合数+费马小定理)的相关文章

2014多校第一场 I 题 || HDU 4869 Turn the pokers(费马小定理+快速幂模)

题目链接 题意 : m张牌,可以翻n次,每次翻xi张牌,问最后能得到多少种形态. 思路 :0定义为反面,1定义为正面,(一开始都是反), 对于每次翻牌操作,我们定义两个边界lb,rb,代表每次中1最少时最少的个数,rb代表1最多时的个数.一张牌翻两次和两张牌翻一次 得到的奇偶性相同,所以结果中lb和最多的rb的奇偶性相同.如果找到了lb和rb,那么,介于这两个数之间且与这两个数奇偶性相同的数均可取到,然后在这个区间内求组合数相加(若lb=3,rb=7,则3,5,7这些情况都能取到,也就是说最后的

HDU 4704 Sum (高精度+快速幂+费马小定理+二项式定理)

Sum Time Limit:1000MS     Memory Limit:131072KB     64bit IO Format:%I64d & %I64u Submit Status Practice HDU 4704 Description Sample Input 2 Sample Output 2 Hint 1. For N = 2, S(1) = S(2) = 1. 2. The input file consists of multiple test cases. 题意:给定一

HDU 5667 Sequence(矩阵快速幂+费马小定理)

题意:不好复制,直接上链接http://acm.hdu.edu.cn/showproblem.php?pid=5667 思路: 观察递推式我们可以发现,所有的f_if?i??都是aa的幂次,所以我们可以对f_if?i??取一个以aa为底的loglog,即g_i=log_a\ f_ig?i??=log?a?? f?i?? 那么递推式变成g_i=b+c*g_{i-1}+g_{i-2}g?i??=b+c∗g?i−1??+g?i−2??,这个式子可以矩阵乘法 这题有一个小trick,注意a\ mod\

UVALive 7040 Color (容斥原理+逆元+组合数+费马小定理+快速幂)

题目:传送门. 题意:t组数据,每组给定n,m,k.有n个格子,m种颜色,要求把每个格子涂上颜色且正好适用k种颜色且相邻的格子颜色不同,求一共有多少种方案,结果对1e9+7取余. 题解: 首先可以将m 与后面的讨论分离.从m 种颜色中取出k 种颜色涂色,取色部分有C(m, k) 种情况: 然后通过尝试可以发现,第一个有k种选择,第二个因不能与第一个相同,只有(k-1) 种选择,第三个也只需与第二个不同,也有(k-1) 种选择.总的情况数为k ×(k-1)^(n-1).但这仅保证了相邻颜色不同,总

hdu 4869 Turn the pokers(递推&amp;组合数学&amp;逆元)

Turn the pokers Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 1279    Accepted Submission(s): 466 Problem Description During summer vacation,Alice stay at home for a long time, with nothing t

HDU 4869 Turn the pokers 多校训练第一场1009

Turn the pokers Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 282    Accepted Submission(s): 89 Problem Description During summer vacation,Alice stay at home for a long time, with nothing to

hdu 4869 Turn the pokers (2014多校联合第一场 I)

Turn the pokers Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 1265    Accepted Submission(s): 465 Problem Description During summer vacation,Alice stay at home for a long time, with nothing t

HDU 4869 Turn the pokers(推理)

HDU 4869 Turn the pokers 题目链接 题意:给定n个翻转扑克方式,每次方式相应能够选择当中xi张进行翻转.一共同拥有m张牌.问最后翻转之后的情况数 思路:对于每一些翻转,假设能确定终于正面向上张数的情况,那么全部的情况就是全部情况的C(m, 张数)之和.那么这个张数进行推理会发现,事实上会有一个上下界,每隔2个位置的数字就是能够的方案,由于在翻牌的时候,相应的肯定会有牌被翻转,而假设向上牌少翻一张,向下牌就要多翻一张.奇偶性是不变的,因此仅仅要每次输入张数,维护上下界,最后

HDU 4869 Turn the pokers(思维+组合公式+快速幂)

Turn the pokers 大意:给出n次操作,给出m个扑克,然后给出n个操作的个数a[i],每个a[i]代表可以翻的扑克的个数,求最后可能出现的扑克的组合情况. Hint Sample Input: 3 3 3 2 3 For the this example: 0 express face down,1 express face up Initial state 000 The first result:000->111->001->110 The second result:0