E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
Dungeon
Dungeon
Game (GRAPH - DP)
QUESTION The demons had captured the princess (P) and imprisoned her in the bottom-right corner of a
dungeon
·
2015-10-31 13:58
Graph
LeetCode
Dungeon
Game
The demons had captured the princess (P) and imprisoned her in the bottom-right corner of a
dungeon
.
·
2015-10-31 12:54
LeetCode
天题系列:
Dungeon
Game
The demons had captured the princess (P) and imprisoned her in the bottom-right corner of a
dungeon
.
·
2015-10-31 11:01
game
poj2251
Dungeon
Master Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 8802
·
2015-10-31 10:13
poj
leetcode[174]
Dungeon
Game
The demons had captured the princess (P) and imprisoned her in the bottom-right corner of a
dungeon
.
·
2015-10-31 10:57
LeetCode
【leetcode】
Dungeon
Game (middle)
The demons had captured the princess (P) and imprisoned her in the bottom-right corner of a
dungeon
.
·
2015-10-31 09:25
LeetCode
poj 2251
Dungeon
Master (三维bfs)
http://poj.org/problem?id=2251 简单bfs,只不过是三维的。。。 唯一的坑点在输出上... Escaped in %d minute(s)这意思是答案为1输出minute,不为1输出minutes还是说是不是1都输出minute(s)?试了下,答案是后者。 另:终于找到了好的读地图的方法。。。而不用担心回车符。 就是先读成字符串。 具体见代
·
2015-10-31 09:20
master
SGU 110.
Dungeon
题目描述 空间探测器在星球M上发现了巨大的地牢,地牢被明亮的球充满,探测器发现光线能按自然规律被球表面反射(入射角等于反射角,入射光线、反射光线、法线在同一平面)。古老的传说说如果光按一定顺序被球表面反射,房间的门就会打开。你不需要去猜这个顺序;你的任务更简单一些。你会知道球的位置和半径、激光发射的位置及光传播的方向。你要找出光被球反射的顺序。 输入
·
2015-10-31 09:27
du
POJ 2251
Dungeon
Master
Dungeon
Master Time Limit: 1000ms Memory Limit: 65536KB This problem will be judged on PKU
·
2015-10-31 08:28
master
[LeetCode]
Dungeon
Game
The demons had captured the princess (P) and imprisoned her in the bottom-right corner of a
dungeon
.
·
2015-10-30 14:31
LeetCode
POJ-2251
Dungeon
Master bfs搜索
就是将普通的二维推广到三维,方向变成了六个。 代码如下: #include <cstring> #include <cstdio> #include <cstdlib> using namespace std; int L, N, M, sx, sy, sz; struct Node { int x, y, z, t;
·
2015-10-30 14:21
master
Dungeon
计算几何 难度:3
Dungeon
time limit per test: 0.25 sec.
·
2015-10-30 13:17
计算
hdu 2251
Dungeon
Master bfs
Dungeon
Master Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 17555  
·
2015-10-30 13:52
master
ZOJ 1940
Dungeon
Master 三维BFS
Dungeon
Master Time Limit:1000MS Memory Limit:65536KB  
·
2015-10-30 13:45
master
推荐16个国外的源码下载网站
The Scrip t Library PHP Jun kyard Hotscripts Script
Dungeon
Gscripts CgiScript Perl
·
2015-10-30 12:30
下载
poj 2251 搜索
Dungeon
Master Time Limit: 1000MS Memory Limit: 65536K Total Submissions:&
·
2015-10-27 16:53
poj
Dungeon
Master 三维广度搜索
描述 You are trapped in a 3D
dungeon
and need to find the quickest way out!
·
2015-10-27 14:57
master
LeetCode -
Dungeon
Game
Dungeon
Game 2015.1.23 19:38 The demons had captured the princess (P) and imprisoned her in the bottom-right
·
2015-10-27 14:11
LeetCode
POJ 2251
Dungeon
Master bfs 难度:0
http://poj.org/problem?id=2251 bfs,把两维换成三维,但是30*30*30=9e3的空间时间复杂度仍然足以承受 #include <cstdio> #include <cstring> #include <algorithm> #include <queue> using namespac
·
2015-10-27 14:43
master
Dungeon
Game
Thedemonshadcapturedtheprincess(P)andimprisonedherinthebottom-rightcornerofadungeon.ThedungeonconsistsofMxNroomslaidoutina2Dgrid.Ourvaliantknight(K)wasinitiallypositionedinthetop-leftroomandmustfighth
hcx2013
·
2015-10-25 14:00
POJ 2251
Dungeon
Master
Dungeon
Master Time Limit: 1000MS Memory Limit: 65536K Total Submissions:&
·
2015-10-23 08:14
master
nyoj 353 3D
dungeon
3D
dungeon
时间限制: 1000 ms | 内存限制:65535 KB 难度: 2 描述
·
2015-10-21 13:48
3D
poj 2251
Dungeon
Master
Dungeon
Master Time Limit: 1000MS Memory Limit: 65536K Total Submissions:&
·
2015-10-21 13:42
master
UVA 532
Dungeon
Master
UVA_532 这个题目在一般图的遍历的基础上增加了一维,多了两个可以选择的方向。 #include<stdio.h>#include<string.h>int a[40][40][40],vis[40][40][40];int qx[30000],qy[30000],ql[30000],dis[30000];int dx[]=
·
2015-10-21 10:37
master
POJ 2251
Dungeon
Master
POJ_2251 这个题目相比之前做过的BFS遍历迷宫的问题,相当于增加了一维的空间,这样在移动的时候就多了两种选择。 #include<stdio.h>#include<string.h>int a[35][35][35],dis[35][35][35],vis[35][35][35];int qx[27010],qy[270
·
2015-10-21 10:22
master
从魔兽世界看策略模式
我想以一款网络游戏来描述这个模式,玩过魔兽世界的人都知道它是比较早引入地下城(
Dungeon
)概念的游戏之一。地下城里有各种妖魔鬼怪给玩家砍啊杀啊。杀死boss后会掉落玩家所需要的各种装备。
denverj
·
2015-10-20 14:04
设计模式
从魔兽世界看策略模式
我想以一款网络游戏来描述这个模式,玩过魔兽世界的人都知道它是比较早引入地下城(
Dungeon
)概念的游戏之一。地下城里有各种妖魔鬼怪给玩家砍啊杀啊。杀死boss后会掉落玩家所需要的各种装备。
denverj
·
2015-10-20 14:00
设计模式
策略模式
策略
Strategy
Pattern
设计模式-从魔兽世界看策略模式
我想以一款网络游戏来描述这个模式,玩过魔兽世界的人都知道它是比较早引入地下城(
Dungeon
)概念的游戏之一。地下城里有各种妖魔鬼怪给玩家砍啊杀啊。杀死boss后会掉落玩家所需要的各种装备。
denverj
·
2015-10-20 14:00
设计模式
Pattern
策略
策略模式
strategy
从魔兽世界看策略模式
我想以一款网络游戏来描述这个模式,玩过魔兽世界的人都知道它是比较早引入地下城(
Dungeon
)概念的游戏之一。地下城里有各种妖魔鬼怪给玩家砍啊杀啊。杀死boss后会掉落玩家所需要的各种装备。
denverj
·
2015-10-20 14:00
设计模式
策略模式
策略
Strategy
Pattern
从魔兽世界看策略模式
我想以一款网络游戏来描述这个模式,玩过魔兽世界的人都知道它是比较早引入地下城(
Dungeon
)概念的游戏之一。地下城里有各种妖魔鬼怪给玩家砍啊杀啊。杀死boss后会掉落玩家所需要的各种装备。
denverj
·
2015-10-20 14:00
设计模式
策略模式
策略
Strategy
Pattern
POJ 2251
Dungeon
Master(地牢大师)三维广搜
题目链接:[POJ2251](http://poj.org/problem?id=2251)题目描述:DungeonMasterTimeLimit:1000MSMemoryLimit:65536KTotalSubmissions:21644Accepted:8419DescriptionYouaretrappedina3Ddungeonandneedtofindthequickestwayout!
而濡木染
·
2015-10-04 16:41
ACM_Synthesizer
POJ 2251
Dungeon
Master(地牢大师)三维广搜
题目链接:[POJ2251](http://poj.org/problem?id=2251)题目描述:DungeonMasterTimeLimit:1000MSMemoryLimit:65536KTotalSubmissions:21644Accepted:8419DescriptionYouaretrappedina3Ddungeonandneedtofindthequickestwayout!
PNAN222
·
2015-10-04 16:00
三维
bfs
AOJ 2447 A Two Floors
Dungeon
(状压bfs)
题意:自己慢慢读米有坑分析:由于按下开关之后图有变化但是图太大了不好标记,我们可以状压一下当前按了哪些开关就好了dp[1 #include #include #include #include #include #include #include #include #include #include #include #include usingnamespacestd; #definepr(x
lwt36
·
2015-10-02 17:00
转型
bfs
[LeetCode 174]
Dungeon
Game
Thedemonshadcapturedtheprincess(P)andimprisonedherinthebottom-rightcornerofadungeon.ThedungeonconsistsofMxNroomslaidoutina2Dgrid.Ourvaliantknight(K)wasinitiallypositionedinthetop-leftroomandmustfighth
sbitswc
·
2015-09-30 13:00
LeetCode
dp
[LeetCode#174]
Dungeon
Game
Problem:Thedemonshadcapturedtheprincess(P)andimprisonedherinthebottom-rightcornerofadungeon.ThedungeonconsistsofMxNroomslaidoutina2Dgrid.Ourvaliantknight(K)wasinitiallypositionedinthetop-leftroomandmu
airforce
·
2015-09-19 09:00
poj2251
Dungeon
Master bfs
http://poj.org/problem?id=2251Description Youaretrappedina3Ddungeonandneedtofindthequickestwayout!Thedungeoniscomposedofunitcubeswhichmayormaynotbefilledwithrock.Ittakesoneminutetomoveoneunitnorth,so
aonaigayiximasi
·
2015-09-18 18:00
POJ 2251
Dungeon
Master
题意:就是一个三维最短路,求S点到E点的最短距离。一个BFS直接水过#include #include #include usingnamespacestd; constintmaxm=50; charmap[maxm][maxm][maxm]; intvis[maxm][maxm][maxm]; intp,n,m; intx1,y1,z1,x2,y2,z2; structnode { intx;
zyx520ytt
·
2015-09-12 13:00
Leetcode:
Dungeon
Game
QuestionThedemonshadcapturedtheprincess(P)andimprisonedherinthebottom-rightcornerofadungeon.ThedungeonconsistsofMxNroomslaidoutina2Dgrid.Ourvaliantknight(K)wasinitiallypositionedinthetop-leftroomandmu
ayst123
·
2015-09-05 21:00
Dungeon
Game
DungeonGame题目 Thedemonshadcapturedtheprincess(P)andimprisonedherinthebottom-rightcornerofadungeon.ThedungeonconsistsofMxNroomslaidoutina2Dgrid.Ourvaliantknight(K)wasinitiallypositionedinthetop-leftroo
yujin753
·
2015-08-26 08:00
LeetCode
POJ 2251
Dungeon
Master(BFS+数据读取)
DungeonMasterTimeLimit:1000MS MemoryLimit:65536KTotalSubmissions:21116 Accepted:8210DescriptionYouaretrappedina3Ddungeonandneedtofindthequickestwayout!Thedungeoniscomposedofunitcubeswhichmayormaynotbe
Grit_ICPC
·
2015-08-14 09:00
poj
bfs
poj 2251
Dungeon
Master
poj2251DungeonMasterDescriptionYouaretrappedina3Ddungeonandneedtofindthequickestwayout!Thedungeoniscomposedofunitcubeswhichmayormaynotbefilledwithrock.Ittakesoneminutetomoveoneunitnorth,south,east,wes
qq_21120027
·
2015-08-11 19:00
poj
bfs
Dungeon
Master
DungeonMasterTimeLimit:1000MSMemoryLimit:65536KTotalSubmissions:20995Accepted:8150DescriptionYouaretrappedina3Ddungeonandneedtofindthequickestwayout!Thedungeoniscomposedofunitcubeswhichmayormaynotbefi
huayunhualuo
·
2015-08-09 14:00
POJ 2251:
Dungeon
Master【bfs】
DungeonMasterTimeLimit:2000/1000ms(Java/Other) MemoryLimit:131072/65536K(Java/Other)TotalSubmission(s):9 AcceptedSubmission(s):7ProblemDescriptionYouaretrappedina3Ddungeonandneedtofindthequickestw
lin14543
·
2015-08-06 17:00
poj
bfs
POJ 2251
Dungeon
Master(三维bfs)
DungeonMasterTimeLimit:1000MS MemoryLimit:65536KTotalSubmissions:20940 Accepted:8118DescriptionYouaretrappedina3Ddungeonandneedtofindthequickestwayout!Thedungeoniscomposedofunitcubeswhichmayormaynotbe
zwj1452267376
·
2015-08-06 16:00
poj 2251
Dungeon
Master
DungeonMasterTimeLimit:2000/1000ms(Java/Other)MemoryLimit:131072/65536K(Java/Other)TotalSubmission(s):16AcceptedSubmission(s):11ProblemDescriptionYouaretrappedina3Ddungeonandneedtofindthequickestwayou
dxx_111
·
2015-08-06 14:41
bfs
POJ - 2251 -
Dungeon
Master (简单BFS)
DungeonMasterTimeLimit: 1000MS MemoryLimit: 65536KTotalSubmissions: 20450 Accepted: 7917DescriptionYouaretrappedina3Ddungeonandneedtofindthequickestwayout!Thedungeoniscomposedofunitcubeswhichmayormayn
u014355480
·
2015-07-25 10:00
ACM
poj
bfs
三维BFS poj2251
Dungeon
Master
其实跟普通的BFS并没有很大区别,只不过变成了三维而已,,多了向上和向下两个方向#include #include #include #include #include #include #include usingnamespacestd; typedeflonglongLL; typedefpairPII; constintMX=50+5; constintINF=0x3f3f3f3f;
qwb492859377
·
2015-07-20 17:00
ZOJ 1940
Dungeon
Master
DescriptionYouaretrappedina3Ddungeonandneedtofindthequickestwayout!Thedungeoniscomposedofunitcubeswhichmayormaynotbefilledwithrock.Ittakesoneminutetomoveoneunitnorth,south,east,west,upordown.Youcannot
jtjy568805874
·
2015-07-18 21:00
ZOJ
poj 2251
Dungeon
Master
#include #include #include #include usingnamespacestd; intk,n,m; chars[40][40][40]; intuse[40][40][40]; intdx[]={0,0,1,-1,0,0}; intdy[]={1,-1,0,0,0,0}; intdz[]={0,0,0,0,1,-1}; structdata { intx,y,z,t
xinag578
·
2015-07-18 18:00
Dungeon
Master
Dungeon
Master Time Limit:1000MS Memory Limit:65536KB  
·
2015-07-17 09:00
master
上一页
2
3
4
5
6
7
8
9
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他