IntroductionThe central component of any game, from a programming standpoint, is thegame loop.It allows the game to run smoothly regardless of a user'...
分类:
其他好文 时间:
2014-07-25 19:10:22
阅读次数:
352
排名不分先后
18183:http://www.18183.com/
17173:http://www.shouyou.com/
996:http://www.996.com/
小皮:http://sj.xiaopi.com/
网易游戏:http://game.163.com/shouyou/
爱手游:http://www.shouyou520.com/
97973:http://w...
分类:
Web程序 时间:
2014-07-25 11:23:41
阅读次数:
281
解题报告
n和m跟木棍相交,问一人取一交点(必须是交点,且取完后去掉交点的两根木棍),最后谁赢
思路:
取最大正方形,以对角线上的交点个数判断输赢。
#include
#include
using namespace std;
int main()
{
int m,n;
while(cin>>n>>m)
{
if(n>m)
{...
分类:
其他好文 时间:
2014-07-25 11:18:01
阅读次数:
288
解题报告
题意:
n场比赛其中k场是没看过的,对于这k场比赛,a,b,c三队赢的场次的关系是a队与b队的绝对值差d1,b队和c队绝对值差d2,求是否能使三支球队的赢的场次相同。
思路:
|B-A|=d1
|C-B|=d2
A+B+C=k
这样就有4种情况,分别是:
B>A&&C
B>A&&C>B
B
BB
分别算出在k场比赛中a,b,c三支队伍赢的场次,另外n-k场比赛分别...
分类:
其他好文 时间:
2014-07-25 11:17:11
阅读次数:
322
A.
Game With Sticks
题意:博弈题,就是给你一个n+m个棒子,n个棒子横着放,m个棒子竖着放,这样形成一个有交叉点的图子,要你每次操作能拿交叉点,相交的那2个的棒子可以拿走,直到最后不能拿走棒子的那一人输了
AC代码:
#include
int main()
{
int n,m;
scanf("%d %d",&n,&m);
n=n<m?n:m;
...
分类:
其他好文 时间:
2014-07-25 11:16:21
阅读次数:
204
Blocks
Time Limit: 5000MS
Memory Limit: 65536K
Total Submissions: 4173
Accepted: 1661
Description
Some of you may have played a game called 'Blocks'. There are n bl...
分类:
其他好文 时间:
2014-07-25 11:11:22
阅读次数:
312
Just a Hook
Time Limit: 4000/2000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 16563 Accepted Submission(s): 8234
Problem Description
In the game o...
分类:
其他好文 时间:
2014-07-25 11:08:51
阅读次数:
269
题目连接:Codeforces 451C Predict Outcome of the Game
题目大意:题意有点坑,就是三支球队有n场比赛,错过了k场,即这k场比赛不知道输赢,只知道第一支球队和第二支球队胜局情况差d1,第二和第三差d2,问说最后有没有可能三支队伍胜局数相同。
解题思路:考虑四种情况下的场数u,是否为3的倍数,u/3后是否比当前情况下胜局数最高的队伍大,并且还要判断...
分类:
其他好文 时间:
2014-07-25 10:57:51
阅读次数:
180
点击打开链接
EXTENDED LIGHTS OUT
Time Limit: 1000MS
Memory Limit: 10000K
Total Submissions: 6492
Accepted: 4267
Description
In an extended version of the game Lights O...
分类:
其他好文 时间:
2014-07-24 23:32:44
阅读次数:
268
Problem DescriptionNowadays, a kind of chess game called “Super Jumping! Jumping! Jumping!” is very popular in HDU. Maybe you are a good boy, and know...
分类:
其他好文 时间:
2014-07-24 17:28:16
阅读次数:
241