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
hdu1035
hdu1035
Robot Motion (DFS)
RobotMotionTimeLimit:2000/1000MS(Java/Others) MemoryLimit:65536/32768K(Java/Others)TotalSubmission(s):8180 AcceptedSubmission(s):3771ProblemDescriptionArobothasbeenprogrammedtofollowtheinstructi
su20145104009
·
2015-08-06 20:00
HDU
1035
hdu1035
HDU1035
Robot Motion【链式前向星】
RobotMotionTimeLimit:2000/1000MS(Java/Others) MemoryLimit:65536/32768K(Java/Others)TotalSubmission(s):7039 AcceptedSubmission(s):3244ProblemDescriptionArobothasbeenprogrammedtofollowtheinstructionsi
u011676797
·
2014-12-18 15:00
HDU1035
深搜
/*
HDU1035
题意: 给定一个字符矩阵,NSWE分别代表向上,下,左,右前进 模拟搜索,判断: 若能走出字符矩阵,则Yes,输出步数 若走不出矩阵,那么必定有圈存在,必定在矩阵中存在一个点会访问第二次
kevin66654
·
2014-11-14 21:00
搜索
ACM
hdoj
ACM-搜索之Robot Motion——
hdu1035
RobotMotion题目:http://acm.hdu.edu.cn/showproblem.php?pid=1035ProblemDescriptionArobothasbeenprogrammedtofollowtheinstructionsinitspath.Instructionsforthenextdirectiontherobotistomovearelaiddowninagrid.
ltree98
·
2014-03-28 14:29
ACM-搜索
漫漫刷题路
ACM-搜索之Robot Motion——
hdu1035
RobotMotion题目:http://acm.hdu.edu.cn/showproblem.php?pid=1035ProblemDescriptionArobothasbeenprogrammedtofollowtheinstructionsinitspath.Instructionsforthenextdirectiontherobotistomovearelaiddowninagrid.
lx417147512
·
2014-03-28 14:00
搜索
ACM
robot
motion
hdu1035
HDU1035
Prime Ring Problem
PrimeRingProblemTimeLimit:4000/2000ms(Java/Other)MemoryLimit:65536/32768K(Java/Other)TotalSubmission(s):14AcceptedSubmission(s):10Font:TimesNewRoman|Verdana|GeorgiaFontSize:←→ProblemDescriptionAringis
lsh670660992
·
2013-07-18 11:00
HDU1035
Prime Ring Problem
PrimeRingProblemTimeLimit:4000/2000ms(Java/Other) MemoryLimit:65536/32768K(Java/Other)TotalSubmission(s):14 AcceptedSubmission(s):10Font:TimesNewR
lsh670660992
·
2013-07-18 11:00
HDU1035
Robot Motion
RobotMotionTimeLimit:2000/1000MS(Java/Others) MemoryLimit:65536/32768K(Java/Others)TotalSubmission(s):5000 AcceptedSubmission(s):2311Proble
lsh670660992
·
2013-07-18 11:00
HDU1035
:Robot Motion
ProblemDescriptionArobothasbeenprogrammedtofollowtheinstructionsinitspath.Instructionsforthenextdirectiontherobotistomovearelaiddowninagrid.Thepossibleinstructionsare Nnorth(upthepage)Ssouth(downthepa
libin56842
·
2013-05-28 15:00
模拟
ACM
HDU
解题报告
hdu1035
DFS模拟
做水题找感觉,一次AC水过的#include #include usingnamespacestd; introw,column,start; intmap[11][11]; chardir[11][11]; intstep; boolflag; intbefore; voidDFS(intx,inty) { if(map[x][y]!=0) { flag=true; before=map[
Kevin_Samuel
·
2013-02-23 20:00
hdu1035
Robot Motion 模拟
mp[r][c][0]保存地图上(r,c)的方向如下 N(8) W(4) E(6) S(2)mp[r][c][1]保存点(r,c)被经过的次数 当第三次遇到(r,c)是不再继续否则mp[r][c][1]++ #include usingnamespacestd; intmain() {
dellaserss
·
2012-07-08 09:00
HDU1035
四方向dfs
这是我在HDU上解决的第一道独立完成的dfs,故此一记!这题WA了两次:1、在写dfs()函数时将递归出口写成了if(r==0||r==10||c==0||c==10)。试想怎么可能是10呢?要根据输入的行列来确定出口哇!2、把记录遍历点的nodeppp[50]开成50,试想行列最大都为10,那么走过的点很可能会超过50呀!那么回溯是就会出错啦!详见代码注释:#include usingnam
Lulipeng_cpp
·
2012-04-30 22:00
c
struct
测试
存储
Graph
HDU 1035
HDU1035
这道题的处理方法是把待处理的字符数组边界设为空格作为出口的标志,另设一个记录所走步数的数组steps,但是这个题目分两个走法,其一没有重复的路径,遇到空格后直接输出的步数,用mark=0标记
雪黛依梦
·
2010-08-30 15:00
上一页
1
下一页
按字母分类:
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
其他