抢夺资源-题解(Python代码)py开荒柘,前几天刚刚看完博弈论的课,这题就是一道巴什博弈 摘要:还是先上代码,其实也不用看,跟别人的差不多 ```python while True: base=[int(i) for i in input().split()] n,m=base[0]…… 题解列表 2020年03月26日 0 点赞 0 评论 450 浏览 评分:6.0
2108: 抢夺资源 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,m; while(scanf("%d%d",&n,&m)!=EOF) { if(n%(m+1)…… 题解列表 2022年03月26日 0 点赞 0 评论 97 浏览 评分:0.0
抢夺资源 (Java代码) 摘要: //借鉴别人的 https://blog.dotcpp.com/a/63000 import java.util.Scanner; public class Main { publ…… 题解列表 2022年06月12日 0 点赞 0 评论 202 浏览 评分:0.0
抢夺资源-题解(C++代码) 摘要:解题思路:可以想成第一个人拿k个,1<=k<=m, 第二个人始终拿m+1-k个,这样就导致如果n%(m+1)==0,第二人最后拿完,第一人输,否则第二人输。注意事项:参考代码:#include<bit…… 题解列表 2020年07月24日 0 点赞 0 评论 296 浏览 评分:0.0