题目描述: You are playing the following Nim Game with your friend: There is a heap(堆) of stones on the table, each time one of you take turns to remove 1 ...
分类:
其他好文 时间:
2019-05-25 09:54:40
阅读次数:
104
贪心策略:就是s1+s2>s2+s1这个贪心策略非常容易发现。 ...
分类:
其他好文 时间:
2019-05-23 00:19:20
阅读次数:
94
搭建node.js 去node官网下载安装环境。 # 安装nodejs ``` node --version v10.15.1 npm --version 6.4.1 ``` # 生成配置文件 ``` 回到自己的项目目录里面 cd E:\phpStudy\WWW\h1901\0521\game np ...
分类:
其他好文 时间:
2019-05-21 19:04:49
阅读次数:
132
agc025C Interval Game 题意:给一些区间,现在要从$0$开始,每次走最短距离到某个区间中,最后回到$0$点。问最长走多少距离。 思路:肯定是走最大的$l$再回到最小的$r$对吧。。。 那么我们走的最长距离就是把$l$从大到小、$r$从小到大排序,把所有的$l$依次减掉对应的$r$ ...
分类:
其他好文 时间:
2019-05-20 21:25:23
阅读次数:
156
Switch Game HDU - 2053 Time limit1000 msMemory limit32768 kB There are many lamps in a line. All of them are off at first. A series of operations are ...
分类:
其他好文 时间:
2019-05-20 21:17:50
阅读次数:
109
Little Sub loves playing the game Flip Me Please. In the game, lights, numbered from 1 to , are connected separately to switches. The lights may be ei ...
分类:
其他好文 时间:
2019-05-20 16:59:27
阅读次数:
244
1. 游戏功能和流程图 实现16宫格滑动拼图,实现3个按钮(重置用户操作,重新开始游戏,解密游戏),后续难度,额外添加重置一次的按钮,解密算法的植入,数字改变为图片植入 游戏流程图 2. 游戏配置 配置游戏目录 配置游戏(game_conf.py) 配置颜色(color.py) 配置动作(handl ...
分类:
编程语言 时间:
2019-05-18 19:05:07
阅读次数:
170
"嘟嘟嘟" 此题并不难。 因为$n \leqslant 500$,所以把每一个值看成一个状态,于是对于每一个状态,暴力$O(k ^ 3)$枚举转移。然后因为有一条到$f[0]$的转移,所以可以用高斯消元求解。 但因为$T \leqslant 300$,所以直接高斯消元会TLE的。这时候我们观察方程, ...
分类:
其他好文 时间:
2019-05-17 19:22:59
阅读次数:
159
题意: 初始有n个灯泡,灯泡状态是0和1,。现在有k轮操作,每次改变且仅改变m个的灯的状态,给定n盏灯的初始状态的最终状态,求有多少种解决改变灯的方案满足可以满足题目条件。 思路: 开始写的时候以为是组合计数和容斥原理什么鬼的,后来发现n,m,k的值都比较小,觉得应该是三维dp了,当然是瞎想,最后看 ...
分类:
其他好文 时间:
2019-05-17 18:11:32
阅读次数:
205
You are playing the following Bulls and Cows game with your friend: You write down a number and ask your friend to guess what the number is. Each time ...
分类:
其他好文 时间:
2019-05-14 20:44:43
阅读次数:
174