uva 539 The Settlers of Catan
Within Settlers of Catan, the 1995 German game of the year, players attempt to dominate an island by building roads, settlements and cities across its uncharted wilder...
分类:
其他好文 时间:
2015-01-29 12:45:04
阅读次数:
149
A Multiplication Game
Time Limit: 5000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 3977 Accepted Submission(s): 2264
Problem Description
Stan...
分类:
其他好文 时间:
2015-01-29 09:29:44
阅读次数:
140
Calendar Game
Time Limit: 5000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 2833 Accepted Submission(s): 1636
Problem Description
Adam and Eve...
分类:
其他好文 时间:
2015-01-29 09:29:40
阅读次数:
168
我在做这样一个坦克游戏,是仿照(http://game.kid.qq.com/a/20140221/028931.htm)这个游戏制作的。仅为学习Unity之用。图片大部分是自己画的,少数是从网上搜来的。您可以到我的github页面(https://github.com/bitzhuwei/Tank...
分类:
编程语言 时间:
2015-01-29 01:23:25
阅读次数:
720
博弈,主要是求SG值。终于做出点儿感觉。 1 /* 1760 */ 2 #include 3 #include 4 #include 5 6 #define MAXN 55 7 8 char map[MAXN][MAXN]; 9 int n, m;10 11 int cal_SG() {1...
分类:
其他好文 时间:
2015-01-28 23:52:03
阅读次数:
248
A Game Between Alice and BobTime Limit:5 Seconds Memory Limit:262144 KBAlice and Bob play the following game. A series of numbers is written on the bl...
分类:
其他好文 时间:
2015-01-28 21:06:02
阅读次数:
334
Brave GameTime Limit: 1000/1000 MS (Java/Others)Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 7370Accepted Submission(s): 4899Problem ...
分类:
其他好文 时间:
2015-01-28 17:24:54
阅读次数:
145
自己想明白的第一道博弈。首先a==b的时候肯定是先手赢;然后当a>=2*b时,不妨假设a=nb+k, k 3 #include 4 #include 5 6 void swap(int &a, int &b) { 7 int tmp = a; 8 a = b; 9 b ...
分类:
其他好文 时间:
2015-01-28 17:18:29
阅读次数:
112
Jump Game IIGiven an array of non-negative integers, you are initially positioned at the first index of the array.Each element in the array represents...
分类:
其他好文 时间:
2015-01-28 12:42:09
阅读次数:
168
效果1:
效果2:
效果3:
//[2].创建主题文字 : gameTitle
Sprite* gameTitle = Sprite::create("game_title.png");
//获取尺寸大小
Size clipSize = gameTitle->getContentSize();
//[3].创建底板的发光图片 : spark
Sprit...
分类:
其他好文 时间:
2015-01-27 18:29:11
阅读次数:
295