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

李白喝酒

时间:2017-02-11 11:11:35      阅读:138      评论:0      收藏:0      [点我收藏+]

标签:end   using   枚举   bsp   ret   nbsp   答案   span   turn   

李白喝酒,起始有2斗酒,遇到酒店酒翻倍,遇到花店喝一斗。

5个酒店10个花店后刚好喝完。问李白有多少种可能?

 

二进制枚举:

最后刚好喝完,则最后肯定是花店,喝一斗酒。

假定酒店为1,花店为0,我们枚举14位的二进制数,使得它有5个1,9个0,且使得最后剩酒1斗即答案。

#include<bits/stdc++.h>
using namespace std;
int main()
{
    int ans=0;
    for(int i=0;i<(1<<14);i++)
    {
        int tot0=0;
        int tot1=0;
        int num=2;
        for(int j=0;j<14;j++)
        {
            if(i&(1<<j))
            {
                num*=2;
                tot1++;
            }
            else
            {
                num-=1;
                tot0++;
            }
        }
        if(tot1==5&&tot0==9&&num==1)
        {
            ans++;
        }
    }
    cout<<ans<<endl;
    return 0;
}

 

李白喝酒

标签:end   using   枚举   bsp   ret   nbsp   答案   span   turn   

原文地址:http://www.cnblogs.com/superxuezhazha/p/6388730.html

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