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
shortest
LeetCode:Word Ladder I II
:Word Ladder Given two words (start and end), and a dictionary, find the length of
shortest
·
2013-11-26 16:00
LeetCode
Floyd All
Shortest
Path 所有最短路径的查找 C++程序
FloydAllShortestPath所有最短路径的查找在严慧敏这本书也有介绍,但是这本书是讲数据结构的,没有介绍这个算法是什么算法,其实这个算法是动态规划法。 思路:1用一个矩阵来记录从i到j的最短路径2用三层循环,选好一个点k,然后把所有其他点组成两对i和j;测试从i到j是直接走近,还是从i经过k最后到j比较近一点。如果绕道k之后花费更小一点,那么就更新[i][j]的数据。3循环完毕就记录
kenden23
·
2013-11-10 08:00
p
floyd
all
C++程序
Shortest
所有最短路径的查找
Shortest
Distance (20)
1046.ShortestDistance(20)时间限制100ms内存限制32000kB代码长度限制16000B判题程序Standard作者CHEN,YueThetaskisreallysimple:givenNexitsonahighwaywhichformsasimplecycle,youaresupposedtotelltheshortestdistancebetweenanypairof
tiantangrenjian
·
2013-10-31 11:00
HDU 1595 find the longest of the
shortest
【次短路】
转载请注明出处:http://blog.csdn.net/a1dark 分析:经典的次短路问题、dijkstra或者SPFA都能做、先找出最短路、然后依次删掉没条边、为何正确就不证明了、了解思想直接A掉、注意记录路径 #include<stdio.h> #include<string.h> #define INF 0x7ffffff #define
·
2013-10-29 21:00
test
HDU 1595 find the longest of the
shortest
【次短路】
转载请注明出处:http://blog.csdn.net/a1dark分析:经典的次短路问题、dijkstra或者SPFA都能做、先找出最短路、然后依次删掉没条边、为何正确就不证明了、了解思想直接A掉、注意记录路径#include #include #defineINF0x7ffffff #defineN1010 intmpt[N][N]; intpath[N]; intn,m; voidinit
verticallimit
·
2013-10-29 19:00
次短路
ZOJ 2760 How Many
Shortest
Path
最多多少条不想交的最短路,正反两次SPFA然后枚举边可以确定这条边在不在最短路上,在的话就在网络里加边,这里的不想交是指边不想交,所以容量限定为1就好了……那个s==t的时候输出inf,坑死我了……/* Author:Speedcell Update:2013-10-16 Version:soppYcell2.4 */ #include #include #include #include #i
speedcell4
·
2013-10-21 18:00
软件测试价值观-SMBT新理念
SMBT是
Shortest
time、Most bug、Best bug、Track bug这几个单词的缩写,其含义就是“测试人
finer
·
2013-10-14 15:00
All-Pairs
Shortest
Paths (APSP)
1. ProblemDenition -- Input:DirectedgraphG=(V,E)withedgecostsceforeachedgeeinE,[Nodistinguishedsourcevertex.] -- Goal:Either (A)Computethelengthofashortestu-->vpathforallpairsofverticesu,vinV
leonzhx
·
2013-10-12 19:00
Algorithm
Algorithm
Algorithm
Algorithm
Path
all
pair
Bellman-Ford
Shortest
Dijkstra's
Floyd-Warshall
Johnson's
Open
Shortest
Path First (OSPF)(1)
开放最短路径优先协议OSPF(OpenshortestPathFirst,OSPF)是IETF组织建议使用的内部网关协议(IGP)OSPF是一种链路状态协议。OSPF使用Dijkstra的最短优先算法(SPF)。是公用的协议。OSPF协议的特点:使用区域的概念,这样可以有效的减少路由选择协议对路由器的CPU和内存的占用,划分区域还可以降低路由选择的通信量。完全无类别处理地址问题,排除了像不连续子网
misery
·
2013-09-26 21:48
通信
技术
认证
路由器
信息
HDU 2807 The
Shortest
Path(3维矩阵转2维)
本题要使满足A*B=C的A,C间有一条边,关键是怎么高效计算矩阵乘法。可在等式两边同时乘上一个长为m,宽为1,且数值全为1的矩阵,将两侧均转换为 A‘*B=C' 只需要预处理一遍即可将矩阵乘法的时间复杂度从O(n^3)降至O(n^2)#include usingnamespacestd; constintmaxn=80+5; constintinf=100000000; inta[maxn][ma
z690933166
·
2013-09-18 16:00
HDU 1009 The
Shortest
Path in Nya Graph
迪杰斯特拉+优先队列1#include 2#include 3#include 4#include 5#include 6#include 7#include 8 9#defineLL__int64 10 11constLLINF=2000000000; 12 13usingnamespacestd; 14 15LLdis[300100]; 16 17inthead
u012161037
·
2013-09-18 15:00
HDU 1595 find the longest of the
shortest
题意:对于题目给定的一个图,问去掉起点到终点的最短路径上的某一条边之后起点到终点的最短距离里的最大值。思路:先计算原图的最短路径,保存最短路径。枚举最短路径每一条边,删掉该边,然后计算最短路径,保留最大的那个即可。实现:先用一个spfa求得最短路径,用一个路径数组保存路径。然后枚举每一条路径上的边,用另一个spfa实现对该边的假删除(即对其进行标记,表示现在删的是此边)。然后比较得出最长的那个最短
ljd4305
·
2013-09-18 12:00
hdu 4725 The
Shortest
Path in Nya Graph dijkstra 求最短路
TheShortestPathinNyaGraphTimeLimit:2000/1000MS(Java/Others)MemoryLimit:32768/32768K(Java/Others)TotalSubmission(s):1279AcceptedSubmission(s):286ProblemDescriptionThisisaveryeasyproblem,yourtaskisjustc
u010422038
·
2013-09-14 08:00
hdu 4725 The
Shortest
Path in Nya Graph (最短路 两种做法 1.建图+SPFA 2.建图+优先队列+Dijkstra)
TheShortestPathinNyaGraphTimeLimit:2000/1000MS(Java/Others) MemoryLimit:32768/32768K(Java/Others)TotalSubmission(s):1235 AcceptedSubmission(s):274ProblemDescriptionThisisaveryeasyproblem,yourtas
u010228612
·
2013-09-13 22:00
HDU 4725 The
Shortest
Path in Nya Graph
题目链接:TheShortestPathinNyaGraph解题思路:这道题比较特殊,但是从题面很容易想到最短路,这里有10^5个点,而且在不同的层中,只有有节点的相邻两层才能互通耗费为c。那么我们就可以在每一层中虚拟出两个节点,一个是进入该层的节点和一个出去的节点。我们只需将进入的点连接该层的每一个点,在将该层的每一个点连接出去的节点。相邻的层要将出去的节点连接另一层进入的节点。那么我们对这个可
u010787640
·
2013-09-12 21:00
hdu4725The
Shortest
Path in Nya Graph(拆点 + 最短路dijkstra | SPFA)
题目请戳这里题目大意:给n个点,m条无向边,边权w,为走这条路的代价。每个点属于某一层,从某层到隔壁层代价都是固定的c,求1到n最短路。题目分析:最短路。比赛的时候硬上SPFA,结果T出翔了。还是太年轻了啊。因为每个点可以借助层的属性,到达其他点就有了其他的路径。所以有必要把每层也抽象出额外的点。因为每层的点也是不连通的,就是说如果点i和点j在同一层,并不代表他们之间距离就是0。所以对于层节点,还
ophunter
·
2013-09-12 12:00
图论
最短路
hdu 4725 The
Shortest
Path in Nya Graph
题意:给出一个图,求从1到n的最短路,另外,每个结点属于一个层,层数相差为1的两个结点可以相互传送,距离固定为c。思路:基本算法就是最短路,不管是dijkstra或者spfa都行吧,我用的是djkstra……主要问题就是构图,当时做热身赛的时候死活没想出来,我果然还是太嫩了么。。。后来洗衣服的时候突然想到一个自以为不错的构图思路,赶紧跑回去写……当时想到的思路是这样的:在相隔为1的两个层之间设一个
qian99
·
2013-09-11 22:00
图论
hdu 4725 The
Shortest
Path in Nya Graph(堆+dij,最短路,5级)
TheShortestPathinNyaGraphTimeLimit:2000/1000MS(Java/Others) MemoryLimit:32768/32768K(Java/Others)TotalSubmission(s):193 AcceptedSubmission(s):38ProblemDescriptionThisisaveryeasyproblem,yourtaski
nealgavin
·
2013-09-11 20:00
HDU 4725 The
Shortest
Path in Nya Graph (最短路)
The
Shortest
Path in Nya Graph Time Limit: 2000/1000 MS (Java/Others) Memory
·
2013-09-11 17:00
Graph
Introduction to Greedy Algorithm
Example: Dijkstra's
shortest
path algorithm (processed e
leonzhx
·
2013-09-10 12:00
Optimal Caching
点在多边形内算法——判断一个点是否在一个复杂多边形的内部
也可以访问多边形内最短路径页(
shortest
-path-through-polygonpage)!图1图1显示了一个具有14条边的凹多边形。我们要判断红色点是否在多边形内。
ch_soft
·
2013-09-06 17:00
hdu 1841 Find the
Shortest
Common Superstring
hdu1841点击打开链接题意:给出两个字符串s1,s2,找到一个最短的字符串s,使得s1是它的子串,s2也是它的字串。方法:用KMP,首先判断s1是否是s2的字串,若是,则直接输出s2的长度,,即s2就是我们找的s字符串。同理判断s2是否是s1的字串。若都不是,,则判断s1的前缀与s2的后缀最大重合部分k1,s2的前缀与s1后缀最大重合部分k2,判断k1与k2的大小,然后用s1的长度加s2的长度
u011560507
·
2013-08-21 16:00
KMP
【PAT】1046.
Shortest
Distance (20)
题目:http://pat.zju.edu.cn/contests/pat-101-102-3-2012-12-16/A题目描述:Thetaskisreallysimple:givenNexitsonahighwaywhichformsasimplecycle,youaresupposedtotelltheshortestdistancebetweenanypairofexits.InputSpe
realxuejin
·
2013-08-19 16:00
pat
Algorithms Part 1-Question 5- Dijkstra's
shortest
-path-最短路径算法
Algorithms:DesignandAnalysis,Part1 最短路径算法题目要求 本次要求对于一个200个点的无向图应用著名的Dijkstra算法求最短路径。可以选择用heap来计算,速度更快。我采用python语言,用了多个字典来加快速度。Inthisprogrammingproblemyou'llcodeupDijkstra'sshortest-pathalgorithm.Down
caozhankui
·
2013-08-18 16:00
leetcode -- Minimum Depth of Binary Tree
The minimum depth is the number of nodes along the
shortest
path from the root node down to the nearest
·
2013-08-14 23:00
LeetCode
Shortest
Distance (20)—PAT
1046.ShortestDistance(20)时间限制100ms内存限制32000kB代码长度限制16000B判题程序Standard作者CHEN,YueThetaskisreallysimple:givenNexitsonahighwaywhichformsasimplecycle,youaresupposedtotelltheshortestdistancebetweenanypairof
zoushidexing
·
2013-08-11 15:00
Ospf 协议(一) 多区域
OSPF(Open
Shortest
Path First开放式最短路径优先)是一个内部网关协议(Interior Gateway Protocol,简称IGP),用于在单一自制系统(autonomous
smile千寻
·
2013-08-08 18:38
System
思科
ospf
多区域
HDU 1841 Find the
Shortest
Common Superstring(KMP灵活运用)
indtheShortestCommonSuperstringTimeLimit:1000/1000MS(Java/Others) MemoryLimit:65535/65535K(Java/Others)TotalSubmission(s):1149 AcceptedSubmission(s):289ProblemDescriptionTheshortestcommonsuperst
opm777
·
2013-08-06 15:00
KMP
HDU
最小循环节
网络中的OSPF协议
网络中的OSPF协议 OSPF(Open
Shortest
Path First开放式最短路径优先)是一个内部网关协议(Interior Gateway Protocol,简称IGP),用于在单一自治系统
IT小灰灰
·
2013-08-06 12:40
路由协议
路由配置
OSPF协议
华为模拟器
poj 2001
Shortest
Prefixes
第一道字典树题目,忘记释放内存,RE了无数回。。。。#include#include#include#include#include#include#include#include#include#include#include#include#includeusingnamespacestd;#definelllonglong#definelsrt>1#defineeps(1e-9)#defin
ymrfzr
·
2013-08-02 08:00
poj
字典树trie树
HDU 1841 Find the
Shortest
Common Superstring KMP
题目地址:http://acm.hdu.edu.cn/showproblem.php?pid=1841题目有问题题、目有问题——代码1和代码3为什么不能过题意:给你两个字符串,求解一个最短的字符串,两个字符串连接的时候相同的可以重叠例如: “alba”和“bacau”重叠在一起的最短串是“albacau”。我感觉这道题用KMP,求next数组就行,先将两个字符串连接起来(两种方法),然后求解nex
ilovexiaohao
·
2013-07-22 20:00
POJ 2001
Shortest
Prefixes
建立一棵字典树,插入单词。然后对于某个特定的单词,将其字符挨个输出,直到某点(只有一个字符串经过),输出结束。voidq(char*str) { Trie*p=&root; intlen=strlen(str); for(inti=0;inext[id]; printf("%c",str[i]); if(p->v==1)return; } }
z690933166
·
2013-07-05 15:00
点在多边形内算法——判断一个点是否在一个复杂多边形的内部
也可以访问多边形内最短路径页(
shortest
-path-through-polygonpage)!图1图1显示了一个具有14条边的凹多边形。我们要判断红色点是否在多边形内。
hjh2005
·
2013-07-04 21:00
POJ 2001
Shortest
Prefixes
Shortest
Prefixes Time Limit: 1000MS Memory Limit: 30000K Total Submissions
·
2013-06-30 11:00
test
codeforces 3A -
Shortest
path of the king
搜索,最短路都可以#include #include #include #defineinf0x3fffffff usingnamespacestd; intmap[65][65]; intsx,sy,ex,ey; intdis[10][10],link[10][10]; charstr[8][3]={"D","R","U","L","RD","LU","LD","RU"}; intdir[8][
aixiaoling1314
·
2013-06-22 15:00
编程
算法
百度
Google
ACM
图解OSPF从入门到配置
OSPF(Open
Shortest
Path First开
yewei1023
·
2013-06-06 16:40
System
gateway
Cisco
思科网络
技术学院
C++使用igraph 3.2 创建你的第一个graph
计算出从一个顶点到另一个顶点的最短路径函数igraph_
shortest
_paths()可以适用的不仅有有向图还有无向图。igraph拥可以以不同的复杂方式创建graph对象。最简单的gra
世纪殇
·
2013-05-29 21:59
igraph
Shortest
path of the king
timelimitpertest1secondmemorylimitpertest64megabytesinputstandardinputoutputstandardoutputThekingisleftaloneonthechessboard.Inspiteofthisloneliness,hedoesn'tloseheart,becausehehasbusinessofnationalimp
jj12345jj198999
·
2013-05-23 09:00
最短路径算法—SPFA(
Shortest
Path Faster Algorithm)算法分析与实现(C/C++)
最短路径算法—SPFA(ShortestPathFasterAlgorithm)算法分析与实现(C/C++)建议看SPFA前先看看Dijkstra和Bellman-Ford这两个最短路算法。SPFA的思路比较简单,网上的说法也比较统一,NOCOW和百度百科上都有。这里在网上找到讲的比较通俗易懂的:SPFA(ShortestPathFasterAlgorithm)是Bellman-Ford算法的一种
pi9nc
·
2013-05-21 23:00
poj2001
Shortest
Prefixes(Trie tree练手)
->题目请戳这里 #include #include #include usingnamespacestd; constintN=21; typedefstructnode { structnode*next[26]; intend,num; }tree; chars[N]; tree*root=NULL; charstr[10001][N]; intn; intlen; voidinit(tr
ophunter
·
2013-05-15 14:00
字典树
[面试真题] LeetCode:Minimum Depth of Binary Tree
The minimum depth is the number of nodes along the
shortest
path from the root node down to the nearest
·
2013-05-11 21:00
LeetCode
coderforce 3A-
Shortest
path of the king
简单的贪心,不过一直追求简单一点再简单一点,所以有点纠结#include#includeintmain(){ intx,y,i,k,t;chars1[3],s2[3]; while(~scanf("%s",s1)){ scanf("%s",s2); x=s2[0]-s1[0]; y=s2[1]-s1[1]; k=(x>0?x:-x); t=(y>0?y:
ymrfzr
·
2013-05-01 22:00
coderforce
贪心greedy
【leetcode】Minimum Depth of Binary Tree
The minimum depth is the number of nodes along the
shortest
path from the root node down to the nearest
king_tt
·
2013-05-01 22:00
LeetCode
HDU 1595 find the longest of the
shortest
链接:http://acm.hdu.edu.cn/showproblem.php?pid=1595题意:从城市1到城市N,之间共有M条路,其中有一条路损坏了,问在损坏的路径影响到达城市N的最短路径长度的情况下的到达城市N的最长路径。分析:先用spfa求出1到N的最短路径,然后枚举这些路径,假设这条路径损坏了,求1到N的最短路,然后找出最大的即可。(用邻接矩阵存储图会TLE,用邻接表90MS+。。
HRHACMER
·
2013-04-28 20:00
poj 2001
Shortest
Prefixes(Trie树)
题目:http://poj.org/problem?id=2001转自:http://hi.baidu.com/gdut_sai/item/3e953a13b0d381573b176ea3描述:给你那么多字符串,然后让你找出最短的前缀字符串。但不能跟下面的单词的前缀相同。样例:输入: carbohydrate cart carburetor caramel
u010064842
·
2013-04-26 00:00
[leetcode] word ladder
Q: Given two words (start and end), and a dictionary, find the length of
shortest
transformation
standalone
·
2013-04-25 15:00
java
【leetcode】Word Ladder II
Question : Given two words (startandend), and a dictionary, find all
shortest
transformation sequence
king_tt
·
2013-04-21 23:00
LeetCode
【leetcode】Word Ladder
Question : Given two words (startandend), and a dictionary, find the length of
shortest
transformation
king_tt
·
2013-04-21 21:00
LeetCode
[leetcode] word ladder II
leetcode.com/onlinejudge#question_126 Q: Given two words (start and end), and a dictionary, find all
shortest
standalone
·
2013-04-15 07:00
LeetCode
【算法导论笔记】所有结点对的最短路径问题
基于矩阵乘法的动态规划算法求解所有最短路径EXTEND_
SHORTEST
_PATHS(L,W) n=L.rows letL'=l'(i,j)beanewn*nmatrix fori=1ton forj=
left_la
·
2013-04-11 15:00
上一页
17
18
19
20
21
22
23
24
下一页
按字母分类:
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
其他