Dating with girls(2)
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K
(Java/Others)
...
分类:
其他好文 时间:
2015-08-30 00:58:44
阅读次数:
181
题目如下:
One important factor to identify acute stroke (急性脑卒中) is the volume of the stroke core. Given the results of image analysis in which the core regions are identified in each MRI slice, you...
分类:
其他好文 时间:
2015-08-28 17:53:29
阅读次数:
261
题目链接:Dungeon Master
解析:三维BFS模板题。
6个方向
开始想的太复杂了,水了好久,其实只要老老实照二维的套就完了。
AC代码:
#include
#include
#include
#include
#include
using namespace std;
int L, R, C;
string m[32][32];
bool ...
分类:
其他好文 时间:
2015-08-19 20:29:20
阅读次数:
112
思路:
搜索的地图是三维的,其他不变。直接BFS。但是我用队列WA,用数组AC,谁能告诉我队列错哪了??...
分类:
其他好文 时间:
2015-07-27 15:03:45
阅读次数:
105
http://poj.org/problem?id=2251简单bfs,只不过是三维的。。。唯一的坑点在输出上...Escaped in %d minute(s)这意思是答案为1输出minute,不为1输出minutes还是说是不是1都输出minute(s)?试了下,答案是后者。另:终于找到了好的读...
分类:
其他好文 时间:
2015-07-21 14:38:56
阅读次数:
116
题目传送门 1 /* 2 BFS:三维BFS,坐标再加上步数,能走一个点当这个地方在步数内不能落到。因为雕像最多8步就会全部下落, 3 只要撑过这个时间就能win,否则lose 4 */ 5 #include 6 #include 7 #include 8 #inclu...
分类:
其他好文 时间:
2015-07-20 16:09:30
阅读次数:
141
题目传送门 1 /* 2 BFS:三维BFS,加上方向。用dp[x][y][d]记录当前需要的最少转向数 3 */ 4 #include 5 #include 6 #include 7 #include 8 #include 9 using namespace s...
分类:
其他好文 时间:
2015-07-18 15:31:18
阅读次数:
129
不开心,简单的三维bfs
#include
#include
using namespace std;
string str1,str2;
int n;
int sx,sy,sz,ex,ey,ez;
char mapp[11][11][11];
int dir[6][3]={{0,0,1},{0,0,-1},{1,0,0},{-1,0,0},{0,1,0},{0,-1,0}};
int re...
分类:
其他好文 时间:
2015-04-10 22:27:57
阅读次数:
133
补考跪了。果然我讨厌网络技术……学什么cisco的软件操作。简直!!!
计算机网络的东西讲得又浅。发的又是一本纯英文的《计算机网络》的书。真装逼的学校。
字典一样厚,我真想砸死你!真是看得起我们,985,211的本科都没这么屌。
赶紧做几道题压压惊。随机翻一页,题目倒是不错,约会……
题意简单,就是找妹子约会(Orz)。迷宫的#代表石头,在k的倍数的时候不能走。
记得vis为三维...
分类:
其他好文 时间:
2015-03-30 21:09:31
阅读次数:
145
bfs算法模版写过很多bfs题,每次写bfs代码习惯都略有不同,有些糟糕的代码习惯影响了解题速度下面这份简单的三维bfs可以算是写得比较不错的一份了,以后按这种习惯写,虽然没有写回溯路径,但回溯路径很简单,只要加个fa数组就行了,所以就不加在模版上了//bfs模版int X,Y,Z;char ch[...
分类:
编程语言 时间:
2015-03-13 16:19:58
阅读次数:
201