http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemId=3754
开始看错题意了,以为没翻到a,b,c时要在原来的基础上加a+b+c,按我的意思推出来一个公式,没想到样例还过了,简直无法debug。
公式很好推,设dp[i]表示当前为i分时到达目标状态需要投掷的期望,可转移到两个状态dp[0]和dp[i+k]。设转移...
分类:
其他好文 时间:
2014-09-07 11:06:05
阅读次数:
220
https://icpcarchive.ecs.baylor.edu/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=4470
Go is a proverbial board game originated in China. It has been proved to be the most diffic...
分类:
其他好文 时间:
2014-09-06 21:21:53
阅读次数:
457
Jack Straws
Time Limit: 1000MS
Memory Limit: 10000K
Total Submissions: 3155
Accepted: 1418
Description
In the game of Jack Straws, a number of plastic or wooden "straws...
分类:
其他好文 时间:
2014-09-06 14:53:53
阅读次数:
270
Description
Alexander Charles McMillan loves to gamble, and during his last trip to the casino he ran across a new game. It is played on a linear sequence of squares as shown below.
A chip is in...
分类:
其他好文 时间:
2014-09-06 12:31:33
阅读次数:
275
oh,pass!First,I think it's a game,hehe...../*ID: qq104801LANG: C++TASK: ttwo*/#include #include #include #include #include #include #include #include ...
分类:
其他好文 时间:
2014-09-06 12:20:03
阅读次数:
230
http://blog.csdn.net/acm_cxlove/article/details/78545261:HDOJ1846 Brave Game [找规律] 简单的巴什博弈 #include #include #include using namespace std; int main...
分类:
其他好文 时间:
2014-09-06 09:40:22
阅读次数:
157
【问题】Game.h包含了Ship.h,并且Ship.h也包含了Game.h。然后在Game.h中声明了一个成员变量为Ship类:Ship*ship;会出现找不到Ship类的错误。【解决】在Game.h头文件中对Ship类进行声明即可:classShip;【扩展】如果在Game.cpp和Ship.cpp中相互包含Game.h与Ship.h。是不会有影..
分类:
其他好文 时间:
2014-09-06 02:17:52
阅读次数:
146
游戏需要暂停时,一般都是将游戏界面变灰,暂停所有动作,然后弹出一堆的按钮。这该如何实现暂停界面呢?1、定义我定义了两个类:Game游戏类、GamePause暂停类。Game类中调用doPause()函数进行游戏暂停,却换到GamePause暂停画面。2、doPause()这里需要用到CCRenderTexture这个..
分类:
其他好文 时间:
2014-09-06 02:17:33
阅读次数:
281
题目链接题意:给一颗树,用最少的点覆盖整棵树。分析:1:以当前节点为根节点,在该节点排士兵守护道路的最小消耗。在这种情况下,他的子节点可以安排士兵,也可以不安排士兵。可以从各个子节点两个不同状态(存在士兵,不存在士兵)的最值中选出最小的消耗,然后相加就求出了当前节点派士兵的最小消耗。2:以当前节点为...
分类:
其他好文 时间:
2014-09-05 22:15:52
阅读次数:
338
Description
After 4 years' waiting, the game "Chinese Paladin 5" finally comes out. Tomato is a crazy fan, and luckily he got the first release. Now he is at home, ready to begin his journey. But b...
分类:
其他好文 时间:
2014-09-05 18:21:51
阅读次数:
299