题解 2108: 抢夺资源

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

抢夺资源 经典巴什博弈

摘要:典型巴什博弈问题 **如果n=m+1,不管先手取多少,都是后手赢** 由此可以得到启发,**只要给对手留下(m+1)的倍数,就能赢** ```cpp #include using names……

2108: 抢夺资源

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){   int n,m; while(scanf("%d%d",&n,&m)!=EOF) { if(n%(m+1)……

抢夺资源 (Java代码)

摘要: //借鉴别人的 https://blog.dotcpp.com/a/63000 import java.util.Scanner; public class Main { publ……