hdu3951(博弈)找规律

题意:有N个硬币围成一圈,两个人每次只能取连续的1~K个硬币。问先手有没有必胜策略。

解法:当K==1:结果只与N的奇偶有关。

           当K>=2:如果N<=K,那么很显然先手必胜。

                           当N>K时,先手一下子取不完,设剩余M个,如果M<=K则后手一下全部取完,后手必胜;当M>K,即此时M>=3且K>=2,那么后手就可以在剩下的一排里取中间留两边然后以后就对称取,就一定必胜;所有此时后手必胜;

代码:

/****************************************************
* author:xiefubao
*******************************************************/
#pragma comment(linker, "/STACK:102400000,102400000")
#include <iostream>
#include <cstring>
#include <cstdlib>
#include <cstdio>
#include <queue>
#include <vector>
#include <algorithm>
#include <cmath>
#include <map>
#include <set>
#include <stack>
#include <string.h>

using namespace std;

#define eps 1e-8
typedef long long LL;





int main()
{
  //freopen ("in.txt" , "r" , stdin);
  int a,b;int t=0;
  int r=0;cin>>r;
  while(r--)
  {cin>>a>>b;
  t++;
      if(b==1){
          if(a&1) printf("Case %d: first\n",t);
          else printf("Case %d: second\n",t);
      }
      else
      {
          if(a>b)
            printf("Case %d: second\n",t);
          else
           printf("Case %d: first\n",t);
      }
  }
   return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值