CC 03The game rock, paper, scissors is a classic tool used to make important decisions among two friends (read https://www.wikihow.com/Play-Rock,-Pape ...
分类:
编程语言 时间:
2019-12-19 13:01:43
阅读次数:
79
An interesting binary-search problem. ...
分类:
其他好文 时间:
2019-12-18 22:09:27
阅读次数:
94
Given an array of non-negative integers, you are initially positioned at the first index of the array. Each element in the array represents your maxim ...
分类:
其他好文 时间:
2019-12-17 13:28:04
阅读次数:
80
批处理可以用于启动一些控制台程序.昨天在github上找到一个有意思的项目OpenRA : 一个开源的红警游戏. 发现该游戏的启动程序(launch-game)是用批处理写的 就学习了下 *没有玩过批处理的小哥哥 可以看一下这篇文章 https://blog.csdn.net/qq_36838191 ...
分类:
其他好文 时间:
2019-12-16 20:56:56
阅读次数:
119
Given an array of non-negative integers, you are initially positioned at the first index of the array. Each element in the array represents your maxim ...
分类:
其他好文 时间:
2019-12-16 13:29:17
阅读次数:
92
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title></title> <style type="text/css"> body { margin: 0; padding: 0; } #game { width: ...
分类:
移动开发 时间:
2019-12-16 10:05:29
阅读次数:
108
巴什博奕,n%(m+1)!=0时,先手总是会赢的 来自 <https://leetcode-cn.com/problems/nim-game/comments/> 思路:此题代码很简单,但是思想却不好理解,我们每次拿石头,一共有两种情况,A:石头总数为4的倍数,B:石头总数不为4的倍数,为什么我们会 ...
分类:
其他好文 时间:
2019-12-16 09:23:17
阅读次数:
88
### 题目链接 ### 题目大意: 给你一个 n * m 的地图以及小蛇蛇头的初始位置,告诉你它会往 上、下、左、右 四个方向走。若在走的过程中(包括结束时)会使得小蛇越界,则输出 "Game Over!" ,否则输出 "Alice!" 以及蛇头最后的坐标位置。 分析: 简单模拟题,只需模拟小蛇蛇 ...
分类:
其他好文 时间:
2019-12-15 16:12:45
阅读次数:
60
A. Axis of Symmetry B. Binary Tree n 的奇偶性决定胜负。 C. Constructing Ranches 路径上点权之和大于,极大值两倍,这是路径上点能拼出多边形的充要条件。 树分治,进行路径统计即可。 有请 F0_0H 讲解下怎样卡常。 D. Defining ...
分类:
其他好文 时间:
2019-12-15 10:53:50
阅读次数:
289
题目大意: 一共有m个士兵,k个陷阱,时间为t,一个首领,这个首领需要在t时间内尽可能多的将士兵带到boos的面前, 第二行是每个士兵的灵敏度。 紧接着是k个陷阱,每个陷阱有l,,r,,d组成,l代表陷阱的位置,r代表l处的陷阱可以在位置r处被解决,陷阱的灵敏度是d,当陷阱的灵敏度比士兵的灵敏度大时 ...
分类:
其他好文 时间:
2019-12-15 01:26:25
阅读次数:
140