Method for finding shortest path to destination in traffic network using Dijkstra algorithm or Floyd-warshall algorithm

A method is presented for finding a shortest path from a starting place to a destination place in a traffic network including one or more turn restrictions, one or more U-turns and one or more P-turns using a Dijkstra algorithm. The method as sets a virtual arc between nodes, and assigns a virtual arc value. A smallest travel time value is selected out of total travel time values for all nodes except for the starting node, by considering existing arcs between nodes and the virtual arc and assigning the smallest travel time value to a permanent label node. The shortest path is determined by tracing the permanent nodes starting from the destination node.

FIELD OF THE INVENTION

This invention relates to a method for finding a shortest path and a computer-readable record media storing instructions for performing the method; and more particularly, to a method for finding a shortest path in a traffic network using a Dijkstra algorithm and a Floyd-warshall algorithm and a computer-readable record media storing instructions for performing the method.

DESCRIPTION OF THE PRIOR ART

A Dijkstra algorithm and a Floyd-warshall algorithm are ones, which are frequently used for finding a shortest path.

The conventional Dijkstra algorithm makes it possible to find a shortest travel time value from a starting node to all other nodes in a network with nonnegative arc values. According to this algorithm, all nodes are classified into two groups of node. One is a permanent node that represents a shortest travel time value from a starting node to a relevant node. The other one is a temporary node that represents an upper bound of a real shortest travel time value from the starting node to the relevant node. Also, a label of a node refers to a shortest travel time value from the starting node along a path whose internal nodes are all permanently labeled. Initially, the starting node is labeled with the permanent node whose travel time value is zero.

According to the Dijkstra algorithm, a node having a minimum temporary label is selected to thereby become the permanent node. The Dijkstra algorithm terminates when all nodes including from the relevant node to neighboring nodes become the permanent node.

The Floyd-warshall algorithm makes it possible to find a shortest path between all pairs of nodes in a network.

According to the Floyd-warshall algorithm, a matrix of πij?is computed. The πijdenotes a travel time value for each of all pairs of nodes, i and j. A πij?(m)denotes a matrix of a shortest travel time value from the node i and to the node j using 1, 2, . . . , m?1 as the internal node. A πij?(k)?denotes a matrix of a travel time value for each of all pairs of nodes i and j within a starting node and an arrival node. A πij?(k+1)?is computed based on the πij?(k). Here, a Triple operation needs to be performed in order to compute the πij?(k+1).

FIG. 7 shows one embodiment of a Triple operation according to a Floyd-warshall algorithm.

Here, it is supposed that a πij?(m)?denotes a matrix for a shortest travel time value from the node i and to the node j using 1, 2, . . . , m?1 as an internal node. A πij?(k+1)?is generated by calculating a given πij?(k)?on a following Triple operation.

That is to say, as for a shortest travel time using nodes 1, 2, . . . , k as an internal node, if πij?(k)ik?(k)kj?(k), πij?(k)ij?(k+1)?without passing a node k, however if πij?(k)ik?(k)kj?(k), πij?(k)ik?(k)kj?(k)?with passing the node k.

When representing the above by a mathematical equation, the equation is as follows:

πij?(k+1)=min {πij?(k), πik?(k)kj?(k)}

In other words, a less one of πij?(k)?and πik?(k)kj?(k)?is assigned to πij?(k+1).

As described above, the conventional Dijkstra algorithm and Floyd-warshall algorithm are used to find a shortest path, however there is a problem that the same node should not be passed twice. Also, there is another problem that the above two algorithm cannot be applied to a real traffic network, in which a Left-turn restriction, a U-turn and a P-turn are included.

SUMMARY OF THE INVENTION

It is an object of the present invention to provide a method for finding a shortest path from a starting place to a destination place in a traffic network to thereby reach the destination place in shorter time.

In accordance with an aspect of the present invention, there is provided a method for finding a shortest path from a starting place to a destination place in a traffic network including one or more turn restrictions, one or more U-turns and one or more P-turns using a Dijkstra algorithm, the method including the steps of: assigning a virtual arc connection value from a starting node to a destination node based on traffic information in order to do the turn restriction, the U-turn and the P-turn, wherein the starting node indicates the starting place and the destination node indicates the destination place; selecting a smallest travel time value out of total travel time value for a temporary label node from the starting node to all nodes except for the starting node and assigning the smallest travel time value to a permanent label node; and determining the shortest path by tracing a permanent node stating from the destination node.

DETAILED DESCRIPTION OF THE PREFERRED EMBODIMENTS

FIG. 1 shows a configuration of a DRGS (dynamic route guidance system) in accordance with the present invention.

Reference numerals?100,?110,?120,?130,?140?and?150?denote respectively a real-time movement management system, an integrated logistics information network (ILIN), traffic information system, an operation center, a freight carrier and a traveler information system.

The traffic information system?120?includes, as a traffic information source, police, a road administrator, road traffic information center or the like. The freight carrier?140?includes a vehicle having an OBU (on board unit). Each vehicle can find a desired location using the equipment for the GPS and an operator of the freight carrier can perform monitoring information about a location of the freight and the vehicle, a travel time, a vehicle status, some freight loaded on a specific vehicle using the same.

The real-time movement management system?100, the traffic information system?120, the operation center?130, the freight carrier?140?and the traveler information system?150?are all coupled with one another through the integrated logistics information network (ILIN)?110.

The DRGS performs guiding a vehicle to an appropriate route, wherein a driver can escape from a traffic congestion to thereby reach his/her destination earlier. Accordingly, a traffic flow can be smooth and vehicle movement efficiency can be increased.

The DRGS needs to estimate a travel time along each path between crossroads and the estimation is based on data that are measured at each of a variety of time slots in the past time, wherein the data are collected using equipment for a GPS (global positioning system). In other words, the travel time estimation for next minutes is required because the traffic flow varies with short time. Also, when this estimation is compared with a next estimation for a traffic variable, it is possible to perform a proper traffic signal control and find an optimal route according to a status of the traffic flow.

As shown in FIG. 1, the real-time movement management system (RTMMS)?100?provides the operation center?130?with a vehicle location, a travel time, vehicle information or the like via an uplink and receives traffic information such as a new shortest path corresponding to a current traffic status via a downlink.

The traffic information system?120?receives information about an overall traffic from the road traffic information center, the police, the road administrator, a weather station or the like and provides the operation center?130?with the information.

The freight carrier?140?provides the operation center?130?with information about a location of the freight and the vehicle, the travel time, a vehicle status, some freight loaded on a specific vehicle or the like via the integrated logistics information network (ILIN)?110?and receives information analyzed in the operation center?130?via the same.

The traveler information system?150?provides the operation center?130?with information related to a route guidance service, for example, traffic information, regulations, a weather in the road and a traffic congestion via the integrated logistics information network (ILIN)?110?and receives information analyzed in the operation center?130?via the same.

FIG. 2 shows a configuration of a traffic network including a turn-restriction.

As shown in FIG. 2, a value on a corresponding path across two nodes represents a travel time value from one node to the other node. The Dijkstra algorithm in accordance with the present invention uses continuous three nodes including a previous permanent node, a current permanent node and a temporary node adjacent to the current permanent node in order to exclude the turn-restriction in the course of finding a shortest path. In other words, if a path along some continuous three nodes is identical to the turn-restriction path, the path cannot be the shortest path.

For example, it is assumed that a vehicle is going to travel from a starting node (3)?200?to a destination node (11)?201. If there are turn-restriction paths including a path?210?along nodes?6-5-8?and a path?211?along nodes?3-4-7, a shortest path is a path along nodes?3-6-7-10-9-8-11?and an optimal total travel time along the shortest path is 14, wherein 14 equals a sum of travel times on each path, that is, 3+2+4+2+1+2. Consequently, the turn-restriction paths including the path?210?along nodes?6-5-8?and the path?211?along nodes?3-4-7?cannot be paths as a comparison object in order to find a shortest path.

FIG. 3 is a configuration of a traffic network including a turn-restriction and a U-turn.

An improved Dijkstra algorithm in accordance with the present invention is applied to the traffic network in FIG.?3.

A virtual arc connection is used in consideration of the U-turn in applying the improved Dijkstra algorithm to the traffic network.

As shown in FIG. 3, each value between nodes represents a travel time value from one node to the other node and the traffic network includes two turn-restriction paths including a path?310?along nodes?6-5-8?and a path?311?along nodes?3-4-7. It is possible for a driver to do a U-turn along nodes?6-5-2-5-8?in order to travel from a node?6?to a node?8?and a U-turn along nodes?3-4-1-4-7?in order to travel from a node?3?to a node?7.

For the above two U-turns, the driver should pass the nodes?5?and?4?one more time, which the driver already passed. However, the U-turn cannot be used in the Dijkstra algorithm because the Dijkstra algorithm doesn‘t consider the U-turn path containing a node passed twice.

In accordance with the present invention, virtual arcs including a path?300?from a node?2?to a node?8?and a path?301?from a node?1?to a node?7?and virtual arc values (the virtual arc value=travel time) including a value of 5 for the path?300?and a value of 3 for the path?301?wherein 5=2+3 and 3=2+1, are used to find a shortest path according to the improved Dijkstra algorithm.

If each of the two virtual arc values 5 or 3 is respectively less than each of existing values from the node?2?to the node?8?or from the node?1?to the node?7, each virtual arc value is used to find the shortest path. Otherwise, each existing value is used to find the shortest path instead of the virtual arc value.

FIG. 4 is a configuration of a traffic network including a turn-restriction, a P-turn and a U-turn to which a Diijkstra algorithm is applied.

As shown in FIG. 4, a P-turn path?401?is formed along nodes H-E-B-C-F-E-D and a U-turn path?402?is formed along nodes H-E-F-E-D.

A virtual arc?403?from a node F to a node D is used to find a shortest path, wherein a node E is in the center of the virtual arc?403.

If there exists already an arc from the node F to the node D in the traffic network, a following consideration needs to be taken into. If a virtual arc value from the node F to the node D is less than an existing arc value, the virtual arc value is used to find the shortest path. In other words, if the travel time of the path from the node F to the node D via the node E is shorter than that of the other paths from the node F to the node D, the path?403?is selected to find the shortest path.

FIGS. 5A and 5B are flow charts illustrating one embodiment of an improved Dijkstra algorithm in accordance with the present invention.


As shown in FIGS. 5A and 5B, at the step S501, a starting node and a destination node are selected in a traffic network.

At the step S502, it is performed to assign a virtual arc value based on traffic information for a U-turn. In this case, if there exists already an arc in the traffic network, followings should be considered. Comparing the virtual arc value with an existing arc value, if the virtual arc value is less than an existing arc value, the virtual arc value is used to find a short path. Otherwise, the existing arc value is used.

At the step S503, it is performed to assign a d1j?to a πj?b. Here, the d1j?represents a travel time value from a starting node, usually a node?1?to a node j. The πj?b?represents a total travel time of a temporary label node from the starting node to the node j.

At the step S504, it is performed to assign the starting node?1?to a b and if there exists no arc between the starting node?1and the node j, d1j=∞ (an infinite value). Here, the b represents a previous permanent node for the node j that is a temporary label node.

At the step S505, it is performed to assign 0 to a π1*.

A πj* represents an optimal total travel time value from the starting node to the node j. Accordingly, the π1* represents a total travel time value from the starting node to the node?1.

At the step S506, it is performed to select a shortest travel time for every temporary label πj?b?assign a permanent label to the same. If a permanent label node is an i, a minimum value (min [πj?b]) out of the total travel time of a temporary label node from the starting node to the node j (πj?b) is selected to thereby be designated as a πi?b.

At the step S507, it is performed to assign the πi?b?to a πi*. The πi* represents a total travel time value from the starting node to the node i.

At the step S508, it is performed determine if there exists no more temporary label, and if not, the logic flow proceeds to step S513, otherwise proceeds to step S509.

At the step S509, it is performed to modify all temporary nodes adjacent to the permanent node i.

At the step S510, if a path along nodes b-i-j is not the turn-restriction path, it is performed to compare the total travel time of the temporary label node from the starting node to the node j (πj?b) with a sum of the total travel time value from the starting node to the permanent node i (πi*) and a travel time value from the permanent node i to a temporary node j adjacent to the i (dij) and then as a result of the comparison, select less travel time to thereby assign the less travel time (min [πj?b, πi*+dij]) to a new total travel time of the temporary label node from the starting node to the node j (πj?b). Here, if the path along nodes b-i-j is the turn-restriction path, the b-i-j path is excluded from the shortest path.

At the step S511, it is performed to determine if the new total travel time of the temporary label node from the starting node to the node j (πj?b) is larger than the sum of the total travel time value from the starting node to the permanent node i (πi*) and a travel time value from the permanent node i to a temporary node j adjacent to the i (dij), and if not, the logic flow proceeds to step S513, otherwise proceeds to step S512.

If πj?bi*+dij, at the step S512, it is performed to assign the previous permanent node i to b for πj?b?and then the logic flow returns to the step S506.

At the step S513, it is performed to find a shortest path by tracing b representing a previous permanent node for the current permanent node, starting from the destination node.

At the step S514, it is performed to trace an actual path after eliminating a virtual arc for the U-turn and the P-turn.

FIG. 6 is a configuration of a traffic network including a turn-restriction, a U-turn and a P-turn to which a Floyd-warshall algorithm is applied.

According to an improved Floyd-warshall algorithm, in case a turn restriction arc is included in a traffic network, the turn restriction arc is excluded from objects for a shortest path by assigning a significantly large value of a travel time, for example, an infinite value (∞) to the arc.

As shown in FIG. 6, the traffic network includes a Left-turn restriction path?601?along nodes V-L-W, two U-turn paths including a path along nodes V-L-a3-L-W and a path along nodes V-L-a5-L-W and a P-turn path along nodes V-L-a3-a4-a5-L-W. The node L?602?is in the center of the traffic network.

When assuming that a starting node is a node S?604?and a destination node is a node T?605, the Left-turn restriction path601?along the nodes V-L-W needs to be considered.

To find a shortest path, it is required to obtain a first shortest travel time matrix (πij?(k)) by considering two paths including a path along nodes V-a6-a5-L-W and a path along nodes V-a6-a5-a4-a3-L-W as if an arc along nodes V-L doesn‘t exist, that is, πVL?(0)=∞ and also to obtain a second shortest travel time matrix (πij?(k)) by considering two paths including a path along nodes V-L-a3-a2-W and a path along nodes V-L-a5-a4-a3-a2-W as if an arc along nodes L-W doesn‘t exist, that is, πLW(0)=∞.

It is required to compare the first shortest travel time matrix (πij?(k)) with the second shortest travel time matrix (πij?(k)) to find the shortest path in the traffic network including the Left-turn restriction path?601?along the nodes V-L-W.

A major disadvantage on the above approach is that a computation time and a memory capacity are increased 2n?times as late and big, wherein the n of the 2n?denotes a number of the Left-turn restriction. Accordingly, the improved Floyd-warshall algorithm should be applied to the traffic network including a limited number of the Left-turn restriction.

The U-turn and the P-turn cannot be used to find an optimal path in a conventional shortest path algorithm because the conventional algorithm doesn‘t consider the U-turn and the P-turn containing a node passed twice.

As shown in FIG. 6, it is required to add a virtual node L′?603?in the traffic network. Consequently, it is possible to consider the P-turn along the nodes V-L-a3-a4-a5-L′-W and the two U-turns including the path along the nodes V-L-a3-L′-W and the path along the nodes V-L-a5-L′-W, each of which don‘t pass the same node twice.

Any virtual node can be added in a traffic network including any P-turns or U-turns, wherein a node needs to be in the center of the P-turns or the U-turns.

FIG. 8 is a flow chart illustrating one embodiment of an improved Floyd-warshall algorithm in accordance with the present invention.

At the step S800, a starting node and a destination node are selected in a traffic network.

At the step S801, it is performed to compute a travel time value between two nodes (πij) for all pairs of nodes. If i=j, a πiiequals 0. That is to say, the travel time value between two nodes (πij) at the same node is 0. Also, if an arc doesn‘t exist between two nodes, the travel time value between two nodes (πij) equals an infinite value (∞).

At the step S802, if a path along nodes i-L-j is a Left-turn restriction when i=V and j=W, it is performed to add a virtual node L′ in an initialization matrix π(0).

At the step S803, it is performed to compute a first matrix π(0), assuming that πVL?(0)=∞, πVL′?(0)=∞ and compute a second matrix π(0), assuming that πLW?(0)=∞, πL′W?(0)=∞.

At the step S804, it is performed to indicate a row m and a column m in each matrix π(m?1).

At the step S805, it is performed to compute each π(m)?for the first matrix and the second matrix using a Triple operation.

At the step S806, if πVW?(m?1)Vm?(m?1)mW?(m?1), (V≠m and W≠m), then πVW?(m)Vm?(m?1)mW?(m?1).

At the step S807, it is performed to determine if the above m equals N+1. The m represents a sum of the number of existing nodes and the number of virtual nodes, and if not, the logic flow returns to the step S804, otherwise proceeds to step S808.

If the above m equals N+1, at the step S808, it is performed to compare each π(m)?to find a πST?(m). The πST?(m)represents a shortest travel time between the starting node S and the destination node T for the first matrix and the second matrix.

At the step S809, it is performed to find the πST?(m).

It is possible to store instructions for performing the present invention in accordance with the present invention in a computer-readable record media.

There is an advantageous effect that a driver can reach his/her destination in shorter time along an optimal shortest route in a real-time dynamic route guidance system (DRGS) since techniques of a virtual arc connection, a virtual node or the like are applied to a plurality of road situations of a real traffic network including a turn restriction, a U-turn and a P-turn based on improved Dijkstra algorithm and Floyd-warshall algorithm in accordance with the present invention.

Also, there is another advantageous effect that it is possible to lower a computation time and memory capacity that are required to find a shortest route based on the improved Dijkstra algorithm in accordance with the present invention.

SRC=https://www.google.com.hk/patents/US6564145

Method for finding shortest path to destination in traffic network using Dijkstra algorithm or Floyd-warshall algorithm,布布扣,bubuko.com

时间: 2024-08-26 03:00:49

Method for finding shortest path to destination in traffic network using Dijkstra algorithm or Floyd-warshall algorithm的相关文章

干货 | 列生成VRPTW子问题ESPPRC( Elementary shortest path problem with resource constraints)介绍附C++代码

00 前言 各位小伙伴大家好,相信大家已经看过前面column generation求解vehicle routing problems的过程详解.该问题中,子问题主要是找到一条reduced cost最小的合法路径,然后加入到Master Problem中.其实,子问题也是一个著名的NP-Hard问题,今天我们就来介绍一下. 01 ESPPRC 考虑图1.1中描述的网络. 除了每条边的成本c_ij之外,还存在经过边(i,j)的所消耗的资源t_ij,比如时间. 我们的目标是找到从开始节点到结束节

The Shortest Path in Nya Graph HDU - 4725

Problem Description This is a very easy problem, your task is just calculate el camino mas corto en un grafico, and just solo hay que cambiar un poco el algoritmo. If you do not understand a word of this paragraph, just move on.The Nya graph is an un

OSPF(Open Shortest Path First)

---恢复内容开始--- 1.概述 路由协议OSPF全称为Open Shortest Path First,也就开放的最短路径优先协议,因为OSPF是由IETF开发的. OSPF的流量使用IP协议号89. OSPF对网络没有跳数限制,支持 Classless Interdomain Routing (CIDR)和Variable-Length Subnet Masks (VLSMs),没有自动汇总功能. OSPF并不会周期性更新路由表,而采用增量更新,即只在路由有变化时,才会发送更新,并且只发送

HDU 4725 The Shortest Path in Nya Graph(构图)

The Shortest Path in Nya Graph Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 13445    Accepted Submission(s): 2856 Problem Description This is a very easy problem, your task is just calculate

[LeetCode] 847. Shortest Path Visiting All Nodes 访问所有结点的最短路径

An undirected, connected graph of N nodes (labeled?0, 1, 2, ..., N-1) is given as?graph. graph.length = N, and?j != i?is in the list?graph[i]?exactly once, if and only if nodes?i?and?j?are connected. Return the length of the shortest path that visits

Dijkstra’s Shortest Path Algorithm / LeetCode 787. Cheapest Flights Within K Stops

Dijkstra’s Shortest Path Algorithm 实现详见:https://www.geeksforgeeks.org/dijkstras-shortest-path-algorithm-using-priority_queue-stl/ 需要注意的是,priority_queue并无法更新内部的元素,因此我们更新dist的同时,直接把新的距离加入pq即可.pq里虽然有outdated的dist,但是由于距离过长,他们并不会更新dist. // If there is sho

OSPF(Open Shortest Path First)协议

开放式最短路径优先(Open Shortest Path First,OSPF)是目前广泛使用的一种动态路由协议,它属于链路状态路由协议,具有路由变化收敛速度快.无路由环路.支持变长子网掩码(VLSM)和汇总.层次区域划分等优点. 命令模板: ospf 1-----------进入协议视图 area 0-----------进入路由区域 network 明细网段 反掩码 实验如下: 1.   Ospf拓扑图 2.   R1配置: 3.   R2配置: 4.   R3配置: 5.   ping通测

leetcode_1293. Shortest Path in a Grid with Obstacles Elimination_[dp动态规划]

题目链接 Given a m * n grid, where each cell is either 0 (empty) or 1 (obstacle). In one step, you can move up, down, left or right from and to an empty cell. Return the minimum number of steps to walk from the upper left corner (0, 0) to the lower right

10.6最短路径问题(Shortest Path Problem)

10.6最短路径问题(Shortest Path Problem) 前言 最短路径问题分两类:单源最短路径问题和多源最短路径问题 单源最短路径 diskstra算法: 多源最短路径 flody算法 原文地址:https://www.cnblogs.com/SpicyArticle/p/12151077.html