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 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?

pid=4869">http://acm.hdu.edu.cn/showproblem.php?pid=4869

思路:可惜了,比赛中没有想出来,一比赛出来就想到了。

首先考虑两次翻转。翻转a个和b个,最好还是设a>b。如今考虑翻转后正面朝上的个数(如果一開始都是背面朝上,以下用0表示背面朝上,1表示正面朝上)。翻转后。1的个数最大可能为a+b,最小为a-b。进一步观察可发现经过两次翻转。1的个数可取的值为最小值为a-b,最大值为a+b,且间隔为2的一个区间,也就是a-b,a-b+2,a-b+4......a+b-2,a+b。那么如今如果再加一个数C,同理可得到1的个数会是一个区间,那么我们仅仅要维护这个区间就可以。

注意会有这种情况,比方a+b超过n或a-b小于0,这个时候就要讨论算出新的区间。这个细致分情况讨论就可以。

最后算出1的个数的区间[L,R]后。最后的答案就为C(n,L)+C(n,L+2)+C(n,L+4)+......C(n,R),最后要取模1e9+7。(C(n,m)为n个数中取m个的组合数)由于这里的n比較大,所以不能直接按公式C[n][m]=C[n-1][m]+C[n-1][m-1]来做。由于C(n,m)=n!/(m!*(n-m)!),那么预处理出n!和n!关于1e9+7的逆元,再依据公式就可以得到答案。

#include <iostream>
#include <string.h>
#include <algorithm>
#include <stdio.h>
#define ll long long
#define maxn 100010
#define mod 1000000009
using namespace std;
ll pow(ll x,ll y)
{
if(y==0)
return 1;
ll tmp=pow(x,y/2);
tmp=(tmp*tmp)%mod;
if(y&1)
tmp=tmp*x%mod;
return tmp;
}
ll c[maxn],b[maxn];
void init()
{
c[0]=1;
for(int i=1;i<=100000;i++)
c[i]=(c[i-1]*i)%mod;
for(int i=0;i<=100000;i++)
b[i]=pow(c[i],mod-2);
}
ll getC(int n,int m)
{
if(m==0||m==n)
return 1;
ll tmp=c[n]*b[m]%mod*b[n-m]%mod;
return tmp;
}
int main()
{
freopen("dd.txt","r",stdin);
init();
int n,m;
while(scanf("%d%d",&n,&m)!=EOF)
{
int x;
int l=0,r=0;
for(int i=1;i<=n;i++)
{
scanf("%d",&x);
int rr=r;
if(r+x<=m)
r+=x;
else
{
if(l+x<=m)
{
if((m-l-x)%2)
r=m-1;
else
r=m;
}
else
{
r=m-(l+x-m);
}
}
if(l-x>=0)
l-=x;
else
{
if(rr>=x)
{
if((rr-x)%2)
l=1;
else
l=0;
}
else
l=x-rr;
}
}
ll ans=0;
for(int i=l;i<=r;i+=2)
{
ans=(ans+getC(m,i))%mod;
}
printf("%I64d\n",ans);
}
return 0;
}

hdu 4869 Turn the pokers (2014多校联合第一场 I)的更多相关文章

  1. HDU 4869 Turn the pokers (2014 多校联合第一场 I)

    HDOJ--4869--Turn the pokers[组合数学+快速幂] 题意:有m张扑克,开始时全部正面朝下,你可以翻n次牌,每次可以翻xi张,翻拍规则就是正面朝下变背面朝下,反之亦然,问经过n次 ...

  2. HDU 4869 Turn the pokers (2014多校联合训练第一场1009) 解题报告(维护区间 + 组合数)

    Turn the pokers Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) ...

  3. HDU 4865 Peter's Hobby(2014 多校联合第一场 E)(概率dp)

    题意:已知昨天天气与今天天气状况的概率关系(wePro),和今天天气状态和叶子湿度的概率关系(lePro)第一天为sunny 概率为 0.63,cloudy 概率 0.17,rainny 概率 0.2 ...

  4. HDU 4869 Turn the pokers (2014 Multi-University Training Contest 1)

    Turn the pokers Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)T ...

  5. hdu 4865 Peter&#39;s Hobby(2014 多校联合第一场 E)

    Peter's Hobby Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) To ...

  6. HDU 4870 Rating (2014 多校联合第一场 J)(概率)

    题意: 一个人有两个TC的账号,一开始两个账号rating都是0,然后每次它会选择里面rating较小的一个账号去打比赛,每次比赛有p的概率+1分,有1-p的概率-2分,当然如果本身是<=2分的 ...

  7. HDU 4868 Information Extraction(2014 多校联合第一场 H)

    看到这道题时我的内心是奔溃的,没有了解过HTML,只能靠窝的渣渣英语一点一点翻译啊TT. Information Extraction 题意:(纯手工翻译,有些用词可能在html中不是一样的,还多包涵 ...

  8. HDU 4869 Turn the pokers(推理)

    HDU 4869 Turn the pokers 题目链接 题意:给定n个翻转扑克方式,每次方式相应能够选择当中xi张进行翻转.一共同拥有m张牌.问最后翻转之后的情况数 思路:对于每一些翻转,假设能确 ...

  9. hdu 5288||2015多校联合第一场1001题

    pid=5288">http://acm.hdu.edu.cn/showproblem.php?pid=5288 Problem Description OO has got a ar ...

随机推荐

  1. CSS 盒子模型(转)

    CSS中, Box Model叫盒子模型(或框模型),Box Model规定了元素框处理元素内容(element content).内边距(padding).边框(border) 和 外边距(marg ...

  2. struts 2 --SEVERE: Could not find action or result

    SEVERE: Could not find action or result There is no Action mapped for namespace / and action name . ...

  3. HSSFClientAnchor(int dx1,int dy1,int dx2,int dy2,short col1,int row1,short col2, int row2)

      public HSSFClientAnchor(int dx1, int dy1, int dx2, int dy2, short col1, int row1, short col2, int  ...

  4. hdu 1263 水果

    Problem Description 夏天来了~~好开心啊,呵呵,好多好多水果~~ Joe经营着一个不大的水果店.他认为生存之道就是经营最受顾客欢迎的水果.现在他想要一份水果销售情况的明细表,这样J ...

  5. Oracle11g R2学习系列 之八高级数据类型

    所谓的高级数据类型,就是大数据类型,即BCNB(助记词:BC牛逼)+XML数据类型. B:blob,用来存储可变长度的二进制数据. C:clob,主要用来存储可变长度的字符型数据,也就是其他数据库中提 ...

  6. phantomjs form提交

    phantomjs表单提交,其实就是对DOM就行操作(获取元素),在这里实现了动态传入各种参数 不说了 直接上代码 var page = require('webpage').create(), sy ...

  7. 【好程序员笔记分享】——Cocoapods集成

    -iOS培训,iOS学习-------型技术博客.期待与您交流!------------ Xcode集成POD教程 准备工作: 首先我们要在我们的电脑中安装POD,进入命令行,输入如下指令 sudo  ...

  8. c++第三天

    今天完成的事情: [主线] 1.复习了一下昨天的内容 while(std::cin >> value) 扫描[标准输入] 2.在网上下载Sales_item.h 代码如下 #ifndef ...

  9. [TYVJ] P1003 越野跑

    越野跑 背景 Background 成成第一次模拟赛 第二道     描述 Description     为了能在下一次跑步比赛中有好的发挥,贝茜在一条山路上开始了她的训练.贝茜希望能在每次训练中跑 ...

  10. 自己动手写谷歌API翻译接口

      可以看到,利用GET请求方式,带入某些参数,就会返回一个json数组,QueryString参数如下:     同样的,我们只需要传入这三个参数,就可以获得我们想要的翻译内容,公开方法,代码如下. ...