Language:Dungeon MasterTime Limit:1000MSMemory Limit:65536KTotal Submissions:16855Accepted:6564DescriptionYou are trapped in a 3D dungeon and need to ...
分类:
其他好文 时间:
2015-09-08 18:23:49
阅读次数:
151
链接:http://poj.org/problem?id=2251Time Limit:1000MSMemory Limit:65536KTotal Submissions:21370Accepted:8299DescriptionYou are trapped in a 3D dungeon an...
分类:
其他好文 时间:
2015-09-05 11:04:07
阅读次数:
158
An interesting problem. The code is also short and clear.The basic idea is to use a 2d array dp[i][j] to denote the minimum hp that is required before...
分类:
其他好文 时间:
2015-08-27 20:55:26
阅读次数:
229
Dungeon Master
Time Limit: 1000MS
Memory Limit: 65536K
Total Submissions: 21312
Accepted: 8283
Description
You are trapped in a 3D dungeon and need to find the quicke...
分类:
其他好文 时间:
2015-08-26 12:05:51
阅读次数:
135
Dungeon Game
题目
The demons had captured the princess (P) and imprisoned her in the bottom-right corner of a dungeon. The dungeon consists of M x N rooms laid out in a 2D grid. Our v...
分类:
其他好文 时间:
2015-08-26 09:32:38
阅读次数:
195
Dungeon MasterTime Limit:1000MSMemory Limit:65536KTotal Submissions:21242Accepted:8265DescriptionYou are trapped in a 3D dungeon and need to find the ...
分类:
其他好文 时间:
2015-08-19 22:35:04
阅读次数:
92
题目链接: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
Dungeon MasterTime Limit: 1000MSMemory Limit: 65536KTotal Submissions: 21230Accepted: 8261DescriptionYou are trapped in a 3D dungeon and need to find ...
分类:
其他好文 时间:
2015-08-18 18:46:07
阅读次数:
112
DescriptionYou are trapped in a 3D dungeon and need to find the quickest way out! The dungeon is composed of unit cubes which may or may not be filled...
分类:
其他好文 时间:
2015-08-15 19:45:32
阅读次数:
95
3D dungeon时间限制:1000ms | 内存限制:65535KB难度:2描写叙述You are trapped in a 3D dungeon and need to find the quickest way out! The dungeon is composed of unit cub...
分类:
其他好文 时间:
2015-08-15 16:17:32
阅读次数:
104