博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
dp --- acdream原创群赛(16) --- B - Apple
阅读量:6406 次
发布时间:2019-06-23

本文共 2471 字,大约阅读时间需要 8 分钟。

 

 

B - Apple

Time Limit: 
2000/1000MS (Java/Others) Memory Limit: 128000/64000KB (Java/Others)
Submit

Problem Description

Alice and Bob are coming.
This time, they are playing with apples. Initially, there are N baskets and M apples. Both baskets and apples are distinguishable. Each turn, (s)he can choose adding a basket or an apple. Alice always plays first. When (s)he complete operation, if the number of ways to split apples into baskets is not less than A, (s)he lose.
Now Alice wonder whether she can win if both player use best strategy.

Input

There are multiple test cases.
Each test case contains three integers N, M and A.
1 <= N <= 10,000
1 <= M <= 30
2 <= A <= 1,000,000,000

Output

For each test case, if Alice can win, output "win" and if Bob can win, output "lose"; otherwise output "draw".

Sample Input

3 1 42 2 10

Sample Output

losewin

 

 【题目大意】

有N个篮子和M个苹果,篮子和苹果都是有区别的。

对于每一个回合,他或她可以选择增加一个篮子或者一个苹果。爱丽丝总是第一个动手。
当他们完成一次操作后,如果将苹果分配到篮子里的方法大于等于A,则输。

现在要你判断先手的胜负。

N----篮子数

M---苹果数
A---上限

 

【题目分析】

定位:常见的dp博弈 、记忆化搜索

像这种没有SG函数的博弈已经很少见了,SG函数的博弈才真叫人蛋疼。

这题的一个细节的地方就是当篮子数=1的时候判断有点麻烦,其他的也不是很难。

具体看代码(注释很详细):

//Memory   Time// 1680K     0MS#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#define MAX 1100#define LL long longusing namespace std;int dp[40][30];int A;bool check(int n,int m){ //组合数 long long way=1; for(int i=1;i<=n;i++){ way*=m; if(way>=A) //不满足条件 return false; } return true; //满足条件}//2--- 平局//1-----win//0----loseint dfs(int n,int m){ if(m==1){ //这个是细节,开始一直没想到 if(n*n>=A){ return 2; //只有一个篮子,并且一开始就大于A,平局 } else{ int tmp1=-1,tmp2=-1; if(check(n+1,m)){ tmp1=dfs(n+1,m); if(tmp1==0) return 1; } if(check(n,m+1)){ tmp2=dfs(n,m+1); if(tmp2==0)return 1; } if(tmp1==2) return 2; else return 0; } } //使用dp数组来记录每一次的搜索值(记忆化搜索) if(dp[n][m]!=-1) return dp[n][m]; int tmp1=-1,tmp2=-1; if(check(n+1,m)){ tmp1=dfs(n+1,m); if(tmp1==0) return dp[n][m]=1; } if(check(n,m+1)){ tmp2=dfs(n,m+1); if(tmp2==0) return dp[n][m]=1; } if(tmp1==2||tmp2==2) return dp[n][m]=2; else return dp[n][m]=0;}int main(){// freopen("cin.txt","r",stdin);// freopen("cout.txt","w",stdout); int n,m; while(scanf("%d %d %d",&m,&n,&A)!=EOF){ memset(dp,-1,sizeof(dp)); int k=dfs(n,m); if(k==2)puts("draw"); else if(k==1)puts("win"); else puts("lose"); } return 0;}

  

 

转载于:https://www.cnblogs.com/crazyacking/p/3839661.html

你可能感兴趣的文章
IBM X3650 M3服务器上RAID配置实战
查看>>
Mysql DBA 高级运维学习之路-索引知识及创建索引的多种方法实战
查看>>
go语言与java nio通信,解析命令调用上下文拉起ffmpeg,并引入livego做的简单流媒体服务器...
查看>>
JavaScript面向对象轻松入门之多态(demo by ES5、ES6、TypeScript)
查看>>
【数据结构】线性表(一):顺序列表
查看>>
利用Mallet工具自动挖掘文本Topic
查看>>
Windows下oracle打补丁步骤
查看>>
Python教程(一)Python简介
查看>>
asp.net forms认证
查看>>
一帧图像的两种显示器建模方式
查看>>
Hadoop 公平调度器算法调度解析
查看>>
Linux Foundation(笔记)
查看>>
Java学习第二十五天
查看>>
vim配置
查看>>
ubuntu 把软件源修改为国内源和更新
查看>>
随机产生四则运算,导入导出文件
查看>>
位运算符
查看>>
winform自定义控件
查看>>
C#编码好习惯
查看>>
避其锋芒,侧翼出击。——司马亮创业回忆录(一)
查看>>