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
1372
POJ 1915(与HDU
1372
类似,BFS代码都差不多)
简单的BFS,因为做过HDU
1372
,所以做这题没用几分钟,代码类似……#include #include #include usingnamespacestd; inta,b,c,d,t,v[305]
u011466175
·
2013-09-23 21:00
HDU
1372
(2013.9.21周赛 i 题:较简单的BFS)
KnightMovesTimeLimit:2000/1000MS(Java/Others) MemoryLimit:65536/32768K(Java/Others)TotalSubmission(s):5162 AcceptedSubmission(s):3164ProblemDescriptionAfriendofyouisdoingresearchontheTravelingKn
u011466175
·
2013-09-23 21:00
HDU
1372
Knight Moves(简单的BFS)
KnightMovesTimeLimit:2000/1000MS(Java/Others) MemoryLimit:65536/32768K(Java/Others)TotalSubmission(s):5121 AcceptedSubmission(s):3137ProblemDescriptionAfriendofyouisdoingresearchontheTravelingKn
opm777
·
2013-09-06 23:00
简单BFS
HDU-
1372
Knight Moves (BFS)
ProblemDescriptionAfriendofyouisdoingresearchontheTravelingKnightProblem(TKP)whereyouaretofindtheshortestclosedtourofknightmovesthatvisitseachsquareofagivensetofnsquaresonachessboardexactlyonce.Hethin
·
2013-08-24 02:00
move
题目
1372
:最大子向量和(连续子数组的最大和)-九度
题目描述:HZ偶尔会拿些专业问题来忽悠那些非计算机专业的同学。今天JOBDU测试组开完会后,他又发话了:在古老的一维模式识别中,常常需要计算连续子向量的最大和,当向量全为正数的时候,问题很好解决。但是,如果向量中包含负数,是否应该包含某个负数,并期望旁边的正数会弥补它呢?例如:{6,-3,-2,7,-15,1,2,2},连续子向量的最大和为8(从第0个开始,到第3个为止)。你会不会被他忽悠住?输入
zoushidexing
·
2013-08-23 13:00
开源力量公开课第二十八期-Windows8应用开发概览
p=
1372
现场参加:上海市张江高科技园区碧波路635号(传奇广场三楼)IC咖啡,地铁二号线张江高科站(30¥,含简餐或咖啡/饮料一份,由IC咖啡收取,IC咖啡特意为参加公开课的同学打过折了,没
衣��u��
·
2013-08-22 16:59
开源
windows8
开源力量公开课第二十八期-Windows8应用开发概览
p=
1372
现场参加:上海市张江高科技园区碧波路635号(传奇广场三楼)IC咖啡,地铁二号线张江高科站(30¥,含简餐或咖啡/饮料一份,由IC咖啡收取,IC咖啡特意为参加公开课的同学打过折了,没
衣��u��
·
2013-08-22 16:42
开源
windows8
hdu
1372
Knight Moves(最基本的BFS)
1、http://acm.hdu.edu.cn/showproblem.php?pid=13722、题目大意:给定一个棋盘,列用a--h表示,行用1-8表示,题目给定一个起始位置一个结束位置,求出从起始位置到结束位置用多少步;3、最基本的BFS代码,留作模板用。。。、题目:KnightMovesTimeLimit:2000/1000MS(Java/Others) MemoryLimit:655
sdjzping
·
2013-07-31 15:00
CSUST2013:专题训练[下半学年]
注:点击标题以打开比赛链接,点击题目以打开题解链接(灰色表示暂无此题解)一、搜索专题ProblemA HDU
1372
KnightMovesProblemB HDU1728 逃离迷宫ProblemC
l383137093
·
2013-07-26 15:00
CSUST
ZOJ 1091 (HDU
1372
) Knight Moves(BFS)
KnightMovesTimeLimit: 2Seconds MemoryLimit: 65536KBAfriendofyouisdoingresearchonthe TravelingKnightProblem(TKP) whereyouaretofindtheshortestclosedtourofknightmovesthatvisitseachsquareofagivensetof
·
2013-07-25 01:00
move
python __doc__
Python中的DocString函数描述分类:Python学习笔记2013-07-2110:
1372
人阅读评论(0)收藏举报Python__doc__函数描述将文档写在程序里,是LISP中的一个特色,
pi9nc
·
2013-07-21 11:00
python学习笔记
HDU
1372
Knight Moves
KnightMovesTimeLimit:2000/1000MS(Java/Others) MemoryLimit:65536/32768K(Java/Others)TotalSubmission(s):4813 AcceptedSubmission(s):2957Pro
lsh670660992
·
2013-07-18 10:00
HDU 3666 THE MATRIX PROBLEM (差分约束 深搜 & 广搜)
32768/32768 K (Java/Others)Total Submission(s): 5437 Accepted Submission(s):
1372
·
2013-06-30 22:00
Matrix
HDU
1372
BFS
//getchar();忘了,纠结我好几个小时!!!!千万不能忘了!在国际象棋中Knight称“马”或“骑士”,Knight的走法和中国象棋中马相同,同样是走“日”字,或英文字母大写的“L”形:即先向左(或右)走1格,再向上(或下)走2格;或先向左(或右)走2格,再向上(或下)走1格。不同的是,囯际象棋的Knight没有“绊马脚”的限制,故Knight可越过其他棋子。吃子与走法相同。如图:#inc
alalalalalqp
·
2013-06-23 19:00
linux 快速登录方法u盘系统制作—livecd制作iso
id=
1372
&downid=8实际上这个软件包是由tr127用qume这个虚拟
The NoteBook of EricKong
·
2013-06-23 19:00
hdu
1372
最短路,搜索也可以#include #defineinf0x3fffffff intmap[65][65]; intdir[4][2]={2,-1,2,1,1,2,-1,2}; intmain() { inti,j,k,x,y; chars1[5],s2[5]; for(i=1;i=0&&x=0&&ymap[i][k]+map[k][j]) map[i][j]=map[i][k]+map[k][j
aixiaoling1314
·
2013-06-05 19:00
编程
算法
百度
Google
ACM
HDU/HDOJ
1372
Knight Moves(骑士游走问题) 简单广度优先搜索
pid=
1372
思路:8个方向依次入队即可,只需标记访问,广度优先搜索是按照层次来搜索,如果存在一条通路,那么自然是最短路了。AC代码:62MS352K,还可以优化。
xiaozhuaixifu
·
2013-06-03 22:00
C++
搜索
bfs
骑士游走
HDU
1372
:Knight Moves(BFS)
ProblemDescriptionAfriendofyouisdoingresearchontheTravelingKnightProblem(TKP)whereyouaretofindtheshortestclosedtourofknightmovesthatvisitseachsquareofagivensetofnsquaresonachessboardexactlyonce.Hethin
libin56842
·
2013-06-03 20:00
ACM
HDU
bfs
搜索
HDU1241:OilDepositsHDU1312:RedandBlackHDU
1372
:KnightMo
l383137093
·
2013-05-18 19:00
搜索
ERROR
1372
(HY000): Password hash should be a 41-digit hexadecimal number
%'IDENTIFIEDBYPASSWORD'mysql';ERROR
1372
(HY000):Passwordhashshouldbea41-digithexadecimalnumber 解决方法:mysql
冯涛_5968
·
2013-05-08 20:47
mysql
HDU
1372
(BFS)
BFS:起点入队;开始搜索:读取队首并出队,搜索范围有四周八个点(有的不存在),搜索到的点入队,并将歩长+1;直到读取的点等于终点;15MS372Kcode:#include #include #include #include usingnamespacestd; structpoint { intx; inty; intstep; }st,ed; intx1,y1,x2,y2; boolvi
i_fuqiang
·
2013-05-06 22:00
HDU
1372
:Knight Moves
点击打开题目链接KnightMovesTimeLimit:2000/1000MS(Java/Others) MemoryLimit:65536/32768K(Java/Others)TotalSubmission(s):4339 AcceptedSubmission(s):2693ProblemDescriptionAfriendofyouisdoingresearchontheTra
l383137093
·
2013-04-20 18:00
搜索
bfs
宁波工程学院[
1372
] Do What n个数中取出某些数使得和大于T且和最小
[
1372
]DoWhat时间限制:1000ms内存限制:65535K问题描述Therearennumbersofbusiness,differentbusinesswillcostyoudifferenttimes.Butyouneednottofinishallofthem
hnust_xiehonghao
·
2013-04-15 13:00
hdu
1372
广搜大水
#include #include #include #include #include #include #include #include usingnamespacestd; inta,b; chars1,s2; intstep[20][120]; queue>q; intdir[8][2]={-2,-1,-1,-2,2,-1,1,-2,1,2,2,1,-1,2,-2,1}; intvisi
vegetable_bird_001
·
2013-03-27 12:00
广搜
天勤OJ 题目
1372
: 分段函数
题目描述编写程序,计算下列分段函数y=f(x)的值。当 0 #include #include intmain() { intn,x,i; while(scanf("%d",&n)!=EOF){ for(i=0;i=0&&x=2&&x=4&&x<6) { printf("y=%.1f\n",x/2-1.5); } } } return0; }
SJF0115
·
2013-02-14 16:00
北理
HDU
1372
Knight Moves
pid=
1372
这道题目是关于中国象棋的,问中国象棋里面马从一个地方跳到另一个地方最少需要多少步。我们知道在正常范围内,马可以向8个方向跳。
ilovexiaohao
·
2013-02-01 22:00
hdu 2680-Choose the best route最短路dijkstra
1000MS(Java/Others)MemoryLimit:32768/32768K(Java/Others)TotalSubmission(s):4376AcceptedSubmission(s):
1372
ProblemDescriptionOneday
yujuan_Mao
·
2012-12-23 23:00
hdu
1372
(simple BFS)
Problem link adress:click here This is a basic BFS problem.But the way of knight's move is strange,if you don't know the law of the knight's move,you are likely to cann't work th
·
2012-12-22 22:00
simple
QTP自动化测试视频教程系列第8、9集已发布
mod=viewthread&tid=
1372
Testing_is_believing
·
2012-12-19 11:00
微信开放平台- 使用 入门篇
注册成功后会生成一个app_id 但是如果想跟微信通信还需要在app的详情页面填写package包名、以及应用签名地址如下:http://open.weixin.qq.com/app/info/wxd0a
1372
ebfdfdad7
ID19870510
·
2012-12-01 12:00
HDOJ
1372
国际象棋走马步,用A*算法A了,但用时挺长的,估计还是简单BFS快多了,代码也好写……#include #include #include #include usingnamespacestd; typedefstruct{ intc_,n_; }Position; inlineboolIsEqual(constPosition&a,constPosition&
·
2012-11-01 00:00
OJ
linux下删除特殊字符中文乱码文件方法
标记一下 [root@lvsmaster~]#ll总用量44drwxr-xr-x.3rootroot 4096 5月2907:26”-rw-------.1rootroot
1372
5月2807:37anaconda-ks.cfg-rw-r
viong
·
2012-10-25 16:26
hdu
1372
Knight Moves
KnightMovesTimeLimit:2000/1000MS(Java/Others)MemoryLimit:65536/32768K(Java/Others)TotalSubmission(s):3761AcceptedSubmission(s):2342ProblemDescriptionAfriendofyouisdoingresearchontheTravelingKnightProb
axcuian
·
2012-10-19 14:28
BFS
HDU
1372
Knight Moves
pid=
1372
思路:简单的BFS ,Knight移动有八个方向在国际象棋中Knight称“马”或“骑士”,Knight的走法和中国象棋中马相同,同样是走“日”字,或英文字母大写的“L”形:即先向左(或右
qinmusiyan
·
2012-10-03 09:00
struct
Hdu
1372
Knight Moves
KnightMovesTimeLimit:2000/1000MS(Java/Others) MemoryLimit:65536/32768K(Java/Others)TotalSubmission(s):3740 AcceptedSubmission(s):2326ProblemDescriptionAfriendofyouisdoingresearchontheTravelingKn
Magic____
·
2012-10-02 22:00
c
String
File
input
each
HDU
1372
骑士漫游 bfs
“骑士漫游”的问题大意如下: 在8*8的棋盘方格上,一个骑士可以自由移动(移动方法为走L形,即横着走两格然后竖着走一格,或是竖着走两格然后横着走一格)。骑士可以从棋盘上任一个方格出发,在64(8*8=64)步内是否可以漫游整个棋盘,每个方格都走到并且只走一次。 用一个初始化为0的8*8的二维数组来代表棋盘: 0 1 2 3 4 5 6 7 0
vsooda
·
2012-09-09 20:00
zoj
1372
----------------Networking 最小生成树 kruskal算法
Youareassignedtodesignnetworkconnectionsbetweencertainpointsinawidearea.Youaregivenasetofpointsinthearea,andasetofpossibleroutesforthecablesthatmayconnectpairsofpoints.Foreachpossibleroutebetweentwopo
zzukun
·
2012-08-16 21:00
zoj
1372
--最小生成树
zoj
1372
--最小生成树最小生成树,Prim算法。
HooLee
·
2012-08-07 10:00
HDU-
1372
-Knight Moves
HDU-
1372
-KnightMoveshttp://acm.hdu.edu.cn/showproblem.php?
Cambridgeacm
·
2012-07-06 20:00
ERROR
1372
(HY000): Password hash should be a 41-digit hexadecimal number
%'IDENTIFIEDBYPASSWORD'mysql';ERROR
1372
(HY000):Passwordhashshouldbea41-digithexadecimalnumber 解决方法:mysql
lynnteng0
·
2012-06-21 17:54
mysql
授权错误
HDU
1372
knight moves
ProblemDescriptionAfriendofyouisdoingresearchontheTravelingKnightProblem(TKP)whereyouaretofindtheshortestclosedtourofknightmovesthatvisitseachsquareofagivensetofnsquaresonachessboardexactlyonce.Hethin
ultimater
·
2012-05-06 20:00
hdu
1372
Knight Moves(广搜)
TimeLimit:2000/1000MS(Java/Others)MemoryLimit:65536/32768K(Java/Others)TotalSubmission(s):3001AcceptedSubmission(s):1868ProblemDescriptionAfriendofyouisdoingresearchontheTravelingKnightProblem(TKP)wh
nealgavin
·
2012-04-25 17:00
MTK内存管理
MTK 内存管理 分类: MTK 2011-03-16 16:27
1372
人阅读 评论(0) 收藏 举报
tyytzy
·
2012-04-20 00:00
内存管理
hdu
1372
-Knight Moves--搜索
看了大半天的题,没看出来怎么个走法、、、、只看见棋盘了、、、一遍一遍的看样例,还是不知道作者要让我怎么走,好吧,有道翻译没有发现眉目。好奇、、、、别人都是怎么知道是--象棋中马的走法(马走“日”象走田车走直路炮翻山。。。)题意:迄今仍在好奇中。分析:看见shortest,就知道BFS。看见某个大牛用DFS写的,核心代码就三句。代码:#include #include #include #inclu
hss871838309
·
2012-04-10 15:00
POJ3041 最小点集覆盖/最大二分比配
SourceCodeProblem:3041User:13abyQMemory:
1372
KTime:16MSLanguage:G++Result:AcceptedSourceCode 1 #include
infinity
·
2012-03-20 01:00
hdu
1372
本来开了个无用的数组,结果无数次ML
#include #include #include #include #include usingnamespacestd; intdist[8][2]={{2,1},{2,-1},{-2,1},{-2,-1},{1,2},{1,-2},{-1,2},{-1,-2}}; intx,y,xx,yy; inta,b; structP { inta,b,len; }; queueG; Ptemp
gongqian12345
·
2012-03-14 14:00
String
search
include
武汉移动137和武汉电信189手机业务比较
本人长期使用移动
1372
XXXX834的号码,以下简称137,现在试用了一下电信1897XXXX137,以下简称189。
晨曦之光
·
2012-03-09 14:00
zoj
1372
||poj 1287 Networking(最小生成树-Kruskal)
学习了下Kruskal and 并查集,先水一道最小生成树,题意简单。SF多次,因为把边的长度看成边的条数,,,囧啊==水完果断睡觉去==#include #include #include #defineMAXN55 #defineMAXM10005 usingnamespacestd; typedefstructedge{ intu,v,w; }edge; edgeedges[MAXM]; i
cqlf__
·
2012-01-27 00:00
struct
networking
JAVA JDBC事务提交的疑问
浏览次数:
1372
次悬赏分:0 | 解决时间:2010-4-400:16 | 提问者:laowai250一个简单的事务提交案例 t
haqer0825
·
2011-09-17 16:00
java
编程
数据库
正则表达式
jdbc
百度
09-05 HDU_Steps4.2 BFS HDU1242 HDU1548 HDU
1372
HDU1728 HDU1252 HDU2612 HDU2653 HDU2531
4.2.1HDU1242Rescue一道简单的BFS,有一点DP的感觉在里面,因为打守卫会耽误时间,所以在搜索一个格子时不能单纯的看它是否搜索过,如果从这条路能更快的走到这个点就要对这个点进行跟新.#include #include #include usingnamespacestd; structpos{ intx,y,step; pos(){} pos(inta,intb){x=a,y=b;
swm8023
·
2011-09-10 01:00
上一页
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
其他