借用朋友的代码,感觉很正规,链接http://home.cnblogs.com/u/get-an-AC-everyday/DescriptionThe game “The Pilots Brothers: following the stripy elephant” has a quest wher...
分类:
其他好文 时间:
2015-03-04 14:27:39
阅读次数:
186
The Pilots Brothers' refrigeratorTime Limit:1000MSMemory Limit:65536KTotal Submissions:19718Accepted:7583Special JudgeDescriptionThe game “The Pilots ...
分类:
其他好文 时间:
2015-02-23 15:25:16
阅读次数:
122
传送门:http://poj.org/problem?id=2965
思路:二进制枚举,递归输出路径。G++ 900+Ms勉强过,C++超时。
代码:
#include
#include
#include
#include
#include
#include
#include
#include
#define INF 0x3f3f3f3f
#define mem(a,b) m...
分类:
其他好文 时间:
2015-02-09 23:15:12
阅读次数:
339
背景:和poj1753一样,用dfs就可以做出来,只是和1753相比较得输出一些步骤,不过这也不麻烦,直接用两个数组就可以存储了。不过记住当递归回来的时候记住把数组里面对应位置的元素清零。
思路:同上一篇1753.
#include
#include
int q[4][4],ok=0,r[16],c[16];
int iswin(void)
{
for(int i=0;i<4;i+...
分类:
其他好文 时间:
2015-02-05 13:37:41
阅读次数:
156
原文链接:
http://www.raywenderlich.com/62049/sprite-kit-tutorial-make-platform-game-like-super-mario-brothers-part-1
原文是基于Cocos2d的,本文改成依赖于Cocos2d-x,代码实现已经上传至
https://github.com/chaiwizard/SuperMa...
分类:
其他好文 时间:
2015-02-02 18:05:05
阅读次数:
243
The Pilots Brothers' refrigerator
Time Limit: 1000MS
Memory Limit: 65536K
Total Submissions: 19464
Accepted: 7462
Special Judge
Description
The game “The Pilo...
分类:
其他好文 时间:
2015-01-09 22:31:42
阅读次数:
301
读懂了题就会发现这是个超级大水题DescriptionGerald hasnyounger brothers and their number happens to be even. One day he boughtn2candy bags. One bag has one candy, one ...
分类:
其他好文 时间:
2014-12-25 13:05:45
阅读次数:
160
The Pilots Brothers' refrigerator
Time Limit: 1000MS
Memory Limit: 65536K
Total Submissions: 19356
Accepted: 7412
Special Judge
Description
The game “The Pilo...
分类:
其他好文 时间:
2014-12-19 12:14:22
阅读次数:
173
题目描述: 有一个4*4的矩阵,求最少次的操作,把这16个格子都变成‘-’,每次翻转(i,j)的时候,第i行,第j列也会变为相反的状态。解题思路: 话说条条大路通罗马,这个题目也有很多种方法,1:bfs+状态压缩,2:状态压缩+枚举,3:高斯消元。这些方法都可以,我在这里就说一下我的方法。 根...
分类:
其他好文 时间:
2014-12-15 10:21:05
阅读次数:
247
http://poj.org/problem?id=2965 poj 1753扩展,dfs+枚举,不过加了一个路径。 The Pilots Brothers' refrigeratorTime Limit:1000MSMemory Limit:65536KTotal Submissions:1927...
分类:
其他好文 时间:
2014-11-29 22:58:41
阅读次数:
223