Description
The funny stone game is coming. There are n piles of stones, numbered with
0, 1, 2,..., n - 1. Two persons pick stones in turn. In every turn, each person selects three piles of stones...
分类:
其他好文 时间:
2014-08-28 16:15:29
阅读次数:
523
Install Redmine on Centos 6.5 - 64 bit Install Redmine on Centos 6.5 - 64 bit The System Requirements Update the System Install the dependencies packages Install Apache and MySQL Turn off SELinux S...
分类:
其他好文 时间:
2014-08-25 19:36:05
阅读次数:
450
模式说明将请求封装成对象,从而使可用不同的请求对客户进行参数化;对请求排队或记录请求日志,以及支持可撤消的操作。模式结构图程序示例说明:调用者是遥控器,接受者是电视代码:class TV(object): def open(self): print 'turn on tv' ...
分类:
其他好文 时间:
2014-08-25 16:34:34
阅读次数:
179
模式说明所谓外观模式就是提供一个统一的接口,用来访问子系统中的一群接口。模式结构图程序示例说明:灯光、荧屏、空调、电视一键开启、关闭代码:class Light(object): def on(self): print 'light turn on' def off(sel...
分类:
其他好文 时间:
2014-08-25 16:22:44
阅读次数:
224
这个题卡在不知道怎么判是否转弯,不过看了大神的解题就懂了,程序里的(dir!=-1 && i!=dir)就是用来判断是否转弯了。
本题我是用的dfs,找到终点时并不晕就返回真,程序并没有遍历整个图。并且在走重时会根据在重点的转弯是turn判断以选优,
这在程序中操作,并作为剪枝,注意本题剪枝很重要,不然会超时的。
下面俩解释一下bfs()中if()剪枝中为什么相等的情况不能剪掉(先看代码去)...
分类:
其他好文 时间:
2014-08-24 14:15:32
阅读次数:
311
http://duartes.org/gustavo/blog/post/how-the-kernel-manages-your-memory/After examining thevirtual address layoutof a process, we turn to the kernel a...
分类:
其他好文 时间:
2014-08-23 16:40:51
阅读次数:
471
一,初步设想 让两个进程实现同步与互斥访问临界资源。 伪代码:turn 。。0 1P0while turn=1 do{nothing}turn := 1P1while turn=0 do{nothing}turn := 1问题: turn 为0时,进程P0在进入临界区前(在临界区外),如果发生...
分类:
其他好文 时间:
2014-08-18 14:19:42
阅读次数:
214
Treblecross is a two player gamewhere the goal is to get three X in a row on a one-dimensional board. At the startof the game all cells in the board is empty. In each turn a player puts a X in an empt...
分类:
其他好文 时间:
2014-08-17 17:03:33
阅读次数:
358
1 public class ChessPieceTurn { };2 public class GameManager {3 void processTurn(PlayerBase player) { };4 boolean acceptTurn(ChessPieceTurn turn) { re...
分类:
其他好文 时间:
2014-08-14 08:11:38
阅读次数:
301
Problem DescriptionDuring summer vacation,Alice stay at home for a long time, with nothing to do. She went out and bought m pokers, tending to play po...
分类:
其他好文 时间:
2014-08-06 22:52:52
阅读次数:
326