Abstract

High-speed railways have been developing quickly in recent years and have become a main travel mode between cities in many countries, especially China. Studying passengers’ travel choices on high-speed railway networks can aid the design of efficient operations and schedule plans. The Tong and Richardson algorithm that is used in this model offers a promising method for finding the optimal path in a schedule-based transit network. However, three aspects of this algorithm limit its application to high-speed railway networks. First, these networks have more complicated common line problems than other transit networks. Without a proper treatment, the optimal paths cannot be found. Second, nonadditive fares are important factors in considering travel choices. Incorporating these factors increases the searching time; improvement in this area is desirable. Third, as high-speed railways have low-frequency running patterns, their passengers may prefer to wait at home or at the office instead of at the station. Thus, consideration of a waiting penalty is needed. This paper suggests three extensions to improve the treatments of these three aspects, and three examples are presented to illustrate the applications of these extensions. The improved algorithm can also be used for other transit systems.

1. Introduction

Traffic assignment in a transit network is unlike that in a road network, because transit vehicles run on fixed routes and predetermined timetables. Vehicles on roads have more freedom in route selection, and they do not need to depart at specific times [1]. There are two approaches to consider the time dimension and the fixed routes in a transit network, that is, the frequency-based model and the schedule-based model. The frequency-based model [24] simplifies the transit network by regarding each line as having many runs and the headway of runs as having a mean. The schedule-based model [1] is based on the real timetable. Thus, in evaluating the characteristics of these two approaches, it seems that the scheduled-based model is more promising for dynamic transit networks. Generally, there are three methodologies for path generation in a schedule-based network.

1.1. Branch and Bound Method

Tong and Richardson [1] suggested an optimal path algorithm which combined Dijkstra’s algorithm [5] with the branch and bound method. Later, Tong and Wong [6] extended this algorithm by considering nonadditive fares. Khani et al. [7] improved the searching speed of this algorithm by setting a lower bound to reduce the size of searches.

Other researchers have introduced several important variables to limit path searching. These variables include the latest departure time [8], the preset time window between the planned departure time and the arrival time [914], the maximum number of transfers [8, 9, 11, 13], the maximum waiting time for transfers [9, 11], and the walking distance [13]. Applying these variables (or bounds) can improve the branch and bound method, but the effectiveness of the bounds depends on their preset values. Compared with Tong and Richardson’s algorithm, these bounds are not tight enough to effectively reduce the searching size.

1.2. Event Dominance Method

Florian [15] suggested an event dominance method, which can be used to find optimal paths to one or multiple destinations. However, the optimality of the path found by this method is questionable, because the searching stops after one event associated with the destination is found. In addition, the real optimal path might be ruled out at an earlier stage. This problem was investigated by Nielsen and Frederiksen [16] using a counterexample. They reported using hidden waiting time at the origin point to solve it and explained the method with a two-line example. However, the search size then becomes larger, so they needed to also use the graph cut approach, a modification that may fail to help if the optimal path has more than one transfer, due to the event dominance principle.

1.3. Other Methods

Nielsen et al. [17] suggested a specified design method for the Copenhagen suburban rail network. They divided the path choices into two kinds, that is, paths with no transfers and paths with transfers. The optimal path with no transfers was selected as the first train departing at the origin to the destination after the planned departure time. For the path with transfers, the whole path was divided into several segments, according to the transfer points that were planned in advance, based on the network. Each of the segments is treated like the path with no transfer. This method greatly reduces the computation time, but it is only suitable for simple networks with several transfer stations and with full information about passenger choices.

Chen and Yang [18] modified the traditional graphic network by adding departure time windows on nodes. That is, if the arrival time at node is not within the preset departure time window, the passengers will need to wait and decide whether to depart at the next time window. This kind of algorithm provided a way to consider the time dimension, but it is not a real schedule-base algorithm, and it simply treats waiting time in the same way as the in-vehicle time.

Compared with the other approaches, Tong and Richardson’s algorithm has an improved capacity for effectively and flexibly handling complex transit networks in real time. However, in its present form it still has three limitations. This paper aims to extend Tong and Richardson’s algorithm to improve its results in dynamic transit networks. This improved algorithm can be used as a tool for information provision. Passengers can plan the best path according to their own preference, such as one without transfer or with less waiting time. In the future, we will develop this algorithm for network assignment and the planning of schedules, but at this stage the algorithm is mainly for transit trip navigation.

2. Tong and Richardson’s Algorithm

2.1. Description of Tong and Richardson’s Algorithm

The Tong and Richardson algorithm can be described as follows.

Step 1. The time-dependent quickest path algorithm is developed from Dijkstra’s algorithm [5], and it uses travel time between nodes as the path cost (as based on the timetable) to search for the time-dependent quickest paths from the origin to all other nodes, if departing at . The variable is the actual clock time for departure at the origin , unit: mins. After the quickest path search, the earliest arrival time at node , namely, , can be found.

Step 2. Based on the quickest path from the origin to the destination , the total weighted cost can be calculated. The weighted cost function for path from node to node iswhere is the journey time (including waiting time, walking time, and transit time) for path from node to , unit: mins.

is the weighted function for journey time in using path , unit: mins:wherewhere is the walking time for path , unit: mins; is the waiting time at stations for path , unit: mins; is the in-vehicle time for path , unit: mins; is the penalty for walking time; is the penalty for waiting time; is the penalty for in-vehicle time; is the penalty for transfer, unit: mins; is the number of transfers for path from node to .

Step 3. Set the upper boundary of the latest arrival time at the destination :

Step 4. Reverse the timetable, and set the reversed upper boundary as the departure time for searching the time-dependent quickest paths from the destination to all other nodes, so that we have the earliest arrival time at node from the destination in the reversed network . Then, reverse to get the latest departure time to the destination at node , .

Step 5. Compare and to check the accessibility of node , :Exclude inaccessible nodes, so that inaccessible nodes are not included in the optimal path search (i.e., in Step  6).

Step 6. The optimal path search finds all of the possible paths by searching all accessible nodes. The weighted time function is calculated for node along path . If , the search for path ends.

Step 7. The smallest is found, and the path is identified as the optimal path from the origin to destination .

2.2. Limitations of the Existing Tong and Richardson Algorithm

This algorithm can be used for most transit networks. However, it cannot deal with the following three common situations in railway networks.

2.2.1. Nonadditive Fare

Tong and Richardson’s algorithm does not consider travel fares. If the fare is link-based and additive (i.e., the fare proportionally increases with the distance or travel time), Tong and Richardson’s algorithm still works when adding an additional linear extension for the weighted time function (such as that provided by Friedrich et al. [9]) along the optimal path search. However, the fare system for the railway is usually nonadditive, so the additive-fare function [9] cannot be used. A later improvement by Tong and Wong [6] allowed for the consideration of the nonadditive fare. However, introducing the fare into the weighted cost function enlarged the bounding (i.e., the searching size), so Tong and Wong used the cheapest fare to tighten the bound. Nevertheless, due to the gap between the fare for the quickest path and the cheapest fare, the searching size can still be large. Therefore, treatments are needed to accelerate the searching process. This paper suggests an effective way to include nonadditive fares.

2.2.2. Common Lines Problem

A line has a sequence of stations and can be separated into sections. Each line section consists of two successive stations with an arc connecting these two nodes. According to Tong and Richardson’s algorithm, arcs with the same starting stations, end stations, and running times can be aggregated into a link with a unique transit time. The arcs of a link are listed in the time sequence. During the path search, for each link only the first arc having a departure time later than the train’s arrival time at node is used. However, this found path may not be the optimal path. An example of this problem is shown in Figure 1.

In the problem illustrated in Figure 1, the passenger arrives at A at 8:55 and wants to go to C. There are two train lines:Line 1: it starts from A at 9:00 and ends at B at 10:00.Line 2: it starts from A at 9:10, stops at B at 10:10, and finally ends at C at 11:00.Hence, there are two possible paths:Path 1: first use Line 1, and then transfer to Line 2.Path 2: directly use Line 2.These two paths have the same arrival time, but Path 2 has no transfer. Thus, Path 2 may be more attractive to passengers. However, Path 2 is not found when using Tong and Richardson’s algorithm, because only one link is built between A and B, and the first arc that meets the time requirement belongs to Line 1. As this kind of line structure is common in railway systems, Tong and Richardson’s algorithm needs to be modified if it is to be useful for these systems.

2.2.3. Waiting Time at Home

Tong and Wong [6] proved that all of the coefficients in the weighted cost function should be at least 1. If one of the coefficients is smaller than 1, the optimal path may not be found. However, the real situation is more complex. Passengers want to begin their trip at :where is the actual clock time for the earliest departure time at the origin , unit: mins.

However, the passengers usually need to wait for a while, because the trains run based on their timetables. If the waiting time at the origin station exceeds the tolerance of passengers, , the passengers will choose to leave their homes or offices later. A smaller penalty () should be given for their time waiting at home or the office, because people can use that time for other activities. To consider this condition, a modification of Tong and Richardson’s algorithm is needed.

This paper extends Tong and Richardson’s algorithm to solve these limitations, so that the algorithm can better analyze dynamic railway networks.

3. Three Extensions

3.1. First Extension: Nonadditive Fare

To add the nonadditive fare into Tong and Richardson’s algorithm, the total weighted cost should be modified first, as follows: where is the fare for path from node to , unit: yuan, and is the weighted function of fare converted to time, unit: mins. Also,where is the value of time, unit: yuan/min.

In addition, , , , and should not be less than 1 [6].

Second, a new step is needed before setting the upper boundary (i.e., Step ).

A time-dependent cheapest path algorithm is developed from Dijkstra’s algorithm [5], which uses fares between nodes as the path cost (based on the fare table) to search for the fare-dependent cheapest path from the origin to the destination . Thus, the smallest fare can be found.

Third, the search boundary is tightened, as follows:

Proposition 1. The optimal path’s arrival time, , is less than .

Proof. As , , and should be at least 1, we haveHence, for the optimal path from the origin to the destination , we haveAdding the transfer penalty for the optimal path , the weighted fare function for the optimal path , and to both the sides of the inequality, we haveassuming thatTherefore, the above-given inequality can be changed toFor the definitions of the transfer penalty and the time-dependent cheapest path algorithm, we haveHence, the above inequality can be changed toThis inequality shows that if the assumption is correct, the quickest path’s total weighted cost is smaller than that of the optimal path. This result violates the definition of the optimal path, which should have the smallest total weighted cost. Hence, the optimal path’s arrival time is earlier than .
Fourth, the optimal path search should be modified as well. There are two possible ways to add nonadditive fares.
One way is to add the fare to the weighted cost after the path search. When finding all of the possible paths, is calculated. If , the path search ends. After the path search, trace back the path and calculate . Add to to get , and then compare all to find the smallest value. The path that has the smallest value is the optimal path. The searching time for this process mainly depends on the difference between the fare of the quickest path and the cheapest fare. If this difference tends to be zero, then the boundary for searching is tight. Otherwise, the searching time may be very long.
The other way to add in the fare factor is to calculate the temporary cost () along the path search. When boarding a new line at node , the cheapest ticket for this line from node , is obtained from the fare table. Using this new line to arrive at node , the temporary cost isDuring the path search, is compared with the total weighted cost of the present best path, . This is the condition for the fare:If the condition for the fare is not satisfied, the path search ends. Once path reaches the destination, has been calculated. If , then path is presently the best path, and the value of the upper boundary is replaced by .

Proposition 2. If the condition of the fare is not satisfied, then path from the origin to node cannot be the optimal path.

Proof. We know thatThat is, if the condition of fare is not satisfied, that is, thenThus, path cannot be the optimal path.

In this paper, the second approach is used to find the optimal path, as the second path provides a tighter bound for searching.

3.2. Second Extension: Common Lines Problem

The common lines problem can be solved by redefining the common lines. Here, the common lines are defined as those train lines having the same platform sequence, transit time, stopping time at each intermediate platform, and fare. A line has several arcs connecting each pair of two successive stations. Arcs with the same starting station, end station and running pattern for the whole line and fare, can be aggregated into a link with a unique transit time and fare. The arcs of the link are listed in the time sequence. To illustrate the difference between this new concept of common lines and Tong and Richardson’s concept, the example network in the introduction is rebuilt, as shown in Figure 2.

Two links between and are built and searched. Paths 1 and 2 are identified and compared so the optimal path can be found. This example illustrates that, after using this new concept to build links, the optimal path can be found by selecting only the first train arc, which has a departure time later than the arrival time. The proof is presented in Proposition A.1 in Appendix.

This approach increases the searching size by adding more links, due to the stricter definition of common lines. Thus, a time window for searching train arcs is created to decrease the searching size. The lower boundary of the time window at node is the arrival time at node via the present path , that is, . Passengers using the present path cannot take the train which departs at node before . The upper boundary of the time window at node is the latest departure time to the destination at node , , calculated in the reversed path search. A similar concept has been suggested by Khani et al. [7], who used the quickest time from node to the destination (i.e., the sum of the transit time and walking time) to restrict the search. In fact, this restriction can be made even tighter by using the latest departure time and considering the waiting time, transit time, and walking time. A proof is given in Proposition A.2 in Appendix to show that using for the optimal path search is sufficient.

3.3. Third Extension: Departure Time Choice

As has been proven by Tong and Wong [6], the weighted coefficients for time must be at least 1, to ensure that the optimal path’s ending time is lower than the upper boundary. However, when passengers stay at home or in their offices rather than at the station, they value that time as a relative benefit. Thus, it is reasonable to allow the waiting penalty at home or office () to be smaller than 1.

First, a new concept, departure interval, is introduced to solve this problem. Usually, people tend to depart to the origin station at intervals such as 8:00, 8:15, or 8:30. The time intervals between each departure are defined as the departure interval, . In our algorithm, we assume that . The algorithm divides the time window [] into different departure time sections, and each section’s duration equals , where is the latest arrival time at the destination . For each departure time section at the origin station, only the trains departing at [, ] are considered. The maximum waiting time at the origin station is , and the actual waiting time for each path is within the tolerance of the passengers. The waiting time at home is not considered during the path search of each time subsection, but this waiting time is considered after the path search so that the optimal path for each departure time section can be found. After searching all of the departure time sections, the optimal path for the time window [] can be found.

Another concept, that of the zone, can be introduced into the algorithm to simulate the condition in which passengers are traveling to or from the station. Zone links are built to connect zones and stations with a timetable for departures. Each zone link has a unique journey time between zone and station , and different journey times are used to simulate the congestion effects during the peak and off-peak periods. The penalty for a journey between zones and stations is .

Thus, a new process to find the optimal path is suggested and shown below.

Step  0. The line sections outside the time window [] do not need to be included in the searching network, and therefore a subnetwork can be created to increase the searching speed, where is the earliest departure time at home zone , unit: mins, and is the latest arrival time at the end zone , unit: mins.

Step  1. The passenger departs from home zone at , and .

Step  2. Run the quickest path search. In the origin station, only the trains departing at [, ] are considered, where is the journey time of home zone link between the home zone and the origin station .

Step  3. If no path is found, go to Step .

Step  4. The algorithm stops if , where is the actual clock time for the arrival time at the end zone , using the quickest path in the th departure, unit: mins.

Go to Step if , where is the present best path’s weighted path cost, unit: mins.

The new weighted path cost function for path iswhere is the journey time for end zone link , between the end zone and the destination station d, unit: mins.

Step  5. Run the cheapest path search. In the origin station, only those trains departing at [] are considered. Thus, the smallest fare, , can be found.

Step  6. Calculate the new total weighted cost and the upper boundary , with the departure time for the subsection.

If the present best path’s weighted path cost (which is initially infinite) is larger than , thenIf not,

Step  7. Run the reversed quickest path search, using the boundary . Compare and to check the accessibility of node , , by using (5). Exclude inaccessible nodes, so that these nodes will not be included in the optimal path search.

Step  8. Find the optimal path among the accessible nodes in the time window [], and apply the following set of rules:(1)In the origin station, only trains departing at [, ] are considered.(2)Only use the first arc of link , in which the departure time is later than the arrival time at the starting node of link .(3)If the arc of link departs at node later than , then the search for link stops, as the arcs of link are listed in the time sequence.(4)In reality, passengers can only afford a certain number of transfers during their journeys. In considering this constraint, a transfer limit () is introduced into the algorithm to stop the branch search if the number of transfers exceeds .(5)If , the search branch stops.(6)If the condition of fare limitation (i.e., (18)) is not satisfied, the search branch stops.

Step  9. Once the optimal path search ends, the waiting time at home should be added:where is the total weighted cost of the newly found optimal path from home zone to end zone , considering the waiting time at home or the office and the nonadditive fare, unit: mins.

Step  10. If the newly found optimal path has a lower total weighted cost than , then record this path as the present best path and replace as the new value. Note that, at the start of this process, the total weighted cost equals the infinite.

Step  11. If (and is a positive integer), update the departure time:If , go to Step  2. If , the algorithm stops.

When all of the possible time sections have been searched, the path with the lowest weighted travel cost can be found. This path is the optimal path for the time window .

We have tested this new algorithm using the data provided by Tong and Richardson [1]. However, fare data is not provided, so we set the fare to zero. In addition, as there is no further information about waiting at home, the penalty of this is the same as that of waiting at the platform. The example network of Tong and Richardson is simple, so the abovementioned common line problem does not exist. Our result is consistent with theirs, demonstrating that the new extensions do not violate the ability of the initial algorithm. In the next chapter, three examples are presented to show the advantages of the new extensions.

4. Case Studies

4.1. Description of the Example Network

To test the proposed algorithm, 16 important high-speed railway stations in southern China are selected to form an example network (shown in Figure 3). Except for Guangzhounan Station, which has three platforms, each of the other stations has two platforms (as shown in Figure 4). Each platform is considered as a node in the abstract network, and each station serves a zone. In addition, some basic assumptions regarding the passengers are set as follows:The penalty for in-vehicle time is .The penalty for walking time is .The penalty for waiting time at the station is .The penalty for transfers is .The value of time is  yuan/min (assuming that the average salary is 6000 yuan/month and the working time is 160 hours/month).The departure interval, , is 15 mins.The maximum waiting time at the origin station, , is 15 mins.The journey time between a zone and a station is 5 mins.The penalty for a journey between zone and station is .The transfer limit for passengers is 1.These parameters can be obtained by using the state preference method based on real data.

Based on the example network, three extensions for the limitations and their respective examples are presented below.

4.2. Example  1, for Extension 1

A passenger wants to travel from Guangzhou to Liuzhou, and the earliest departure time, , is 9:30. There are two possible paths, as shown in Tables 1 and 2, and their respective cost calculations are shown in Tables 3 and 4.

The quickest path is path , which has a total weighted cost of 626.2 mins and a cheapest fare of 185.5 yuan. Thus, the upper boundary is The possible path is found, because its arrival time at destination is within the upper boundary, if the condition for the fare (i.e., (18)) does not need to be satisfied.

If the condition for the fare is used, the temporary cost is calculated along the path search (shown in Figure 5). When the path search arrives at Node 24, using path , the temporary cost is , as shown in Figure 5.

The path search for this section stops at Node 24. This example shows that the searching time is reduced if the condition for the fare is applied.

Both the characters of paths and the perceptions of passengers determine the optimal path. Considering this network structure, path has a shorter in-vehicle time and a cheaper fare, but the waiting time at the platform is much longer than the path . The biggest advantage of path is therefore the short waiting time at the platform. Hence, we will use the Monte Carlo method to test the sensitivity of under this circumstance.

We assume that follows a normal distribution with a mean of 1.8 and a standard deviation of 0.2. A statistical tool based on the real data collected by the state preference method is used to obtain this information. We randomly generated 100 numbers that follow the distribution of in Excel. While retaining the other parameters, we put these 100 numbers into the model one by one as the value of and then ran the model to find the optimal path. The test result is shown in Figure 6. The path has a higher possibility of being selected due to its shorter in-vehicle time and cheaper fare. However, we also found that when is larger than about 1.9, the optimal path is path rather than path , so if a passenger really does not want to wait for a train, he or she is very likely to choose path .

4.3. Example  2, for Extension 2

A passenger wants to travel from Shenzhen to Changsha, and the earliest departure time, , is 9:30. Two possible trains are given in Tables 5 and 6 and illustrated in Figure 7.

Based on Tong and Richardson’s algorithm, a link from Node 17 to Node 15 should be created with two train numbers, that is, Line 1 and Line 2, with Line 1 used to travel from Shenzhenbei to Guangzhounan. Only the possible path can be found, as shown in Tables 7 and 8. However, based on the new concept of common lines, there should be two links, that is, one link associated with Line 1 and the other associated with Line 2. Another possible path, , is found and is shown in Tables 9 and 10. The weighted cost for is smaller than that for , so that the better path is , which cannot be found by using Tong and Richardson’s algorithm. In summary, this example shows that the first extension has a better solution than that provided by Tong and Richardson’s algorithm.

4.4. Example  3, for Extension 3

A passenger wants to travel from Guangzhou to Liuzhou. The time window [] = [9:00, 18:00].

In the first run, the actual departure time is 9:00. The quickest path’s weighted path cost is 585 mins, and the cheapest fare is 185.5 yuan. Thus, the upper boundary, , is After the reversed quickest path search, a network including only accessible nodes can be built (as shown in Figure 8). One possible path is found in the optimal path search (shown in Tables 11 and 12). The present best weighted path cost is updated to 585 mins. As there is no waiting time at home, the present best total weighted cost is also 585 mins.

In the second run, the actual departure time is 9:15. No path is found.

In the third run, the actual departure time is 9:30. The quickest path’s weighted path cost is 564.2 mins, and the cheapest fare is 185.5 yuan. Clearly, 564.2 mins is less than the previous best weighted path cost (of 585 mins). Thus, the upper boundary, , is After the reversed quickest path search, a network having only accessible nodes can be built (as shown in Figure 9). One possible path is found in the optimal path search (as shown in Tables 13 and 14). The new path cost (579.2 mins) is more than the previous best total weighted cost, so the present best weighted path cost is updated to  mins.

In the fourth run, the actual departure time is 9:45. The quickest path’s weighted path cost is 752 mins and the cheapest fare is 185.5 yuan. 752 mins is more than the previous best weighted path cost (564.2 mins). Thus, the upper boundary, , is No path can be found. Using 752 mins, the upper boundary, , is as follows: After the reversed quickest path search, a network having only accessible nodes can be built (as shown in Figure 10). One possible path is found in the optimal path search (as shown in Tables 15 and 16). The new path cost (774.5 mins) is more than the previous best weighted path cost, so this path cannot be the optimal path. This result indicates that tightening the upper boundary saves computation time.

The optimal path for this example is the possible path in the third run. This optimal path cannot be found by using Tong and Richardson’s algorithm, because its arrival time (13:50) is later than the upper boundary of the first run (13:49).

5. Conclusions

This paper suggests three extensions for Tong and Richardson’s algorithm. In the first, instead of only considering the time effect, the fare effect on choosing a path is included, so that the found path is more reasonable. In addition, a method for decreasing computation time is added. This method is demonstrated by using the cheapest fare and the temporary cost. In the second extension, the common lines problem in a schedule-based transit network is solved by redefining the common lines. The common lines should be those train lines that have the same platform sequences, transit times, and stopping times at each intermediate platform and fares. Line selecting rules are also added to reduce the computation complexity. In the third extension, departure time choice is introduced into the algorithm to avoid overly long waiting times at the origin station. This extension can also help to include the congestion effect in travel between the origin and destination stations. Hence, the new algorithm can be used to find the optimal path in a more complicated transit system, such as a real railway network. The examples shown demonstrate that the extended algorithm can work better than Tong and Richardson’s algorithm. However, more extensions can be done, such as including the stochastic effects on the arrival times of passengers or trains, considering the capacity of trains or the fare change. Future work will focus on these additional aspects. The uncertainty related to fares should be particularly considered, as the fare is an important factor in market competition, and rail companies are interested in how passengers change their behavior when the fare changes. Studies [19, 20] in this area have indicated some valuable new directions, and we will develop this algorithm further in the future.

Appendix

Propositions

Proposition A.1. Based on the new concept of common lines, the optimal path via link uses the first arc of link having a departure time that is later than the arrival time.

Proof. Assuming that a path from the origin to node must use link to arrive at node and that has two train arcs that have departure times later than their arrival times at , , then one has the following:Arc 1 belongs to Line 1, and its departing time at is .Arc 2 belongs to Line 2, and its departing time at is .If , then Arc 1 is the first arc having a departure time that is later than the arrival time.
There are two further conditions to consider:Con 1: if passengers do not use Line 1 to arrive at ACon 2: if passengers use Line 1 to arrive at AThere are two possible paths to take:Path : using Arc 1 to continue the journeyPath : using Arc 2 to continue the journeyIf there is no transfer after , then the fare, transit time, and stopping time at each intermediate platform from to the destination are the same for Lines 1 and 2, according to the new concept of common lines. In addition, path and path use the same arriving path to . Thus, the total weighted cost difference between these paths isThe result of this equation is valid becauseIt can be seen that .
If a transfer happens after , then an assumption can be made. Suppose that path and path have their first transfers at node and they have another set of common lines after . In that case, Path : the departing time at is , and the arriving time at is ;Path : the departing time at is , and the arriving time at is .If , then , because the transit time and stopping time at each intermediate platform from to are the same for path and path , according to the new concept of common lines. At , Arc 3 is the first arc which departs at later than , and the departure time of Arc 3, , is also assumed to be later than . Thus, the total weighted cost difference between path and path is as follows:Therefore,According to the new concept of common lines,Then, , for Con 1.
As for Con 2, the results from (A.3) and (A.4) indicate thatIt is possible that is smaller than ; that is, path needs to use the next arc, which departs at later than . In that case, this path is called Arc 4, with its departure time at being . Also, the total weighted cost difference between path and path isSimilarly,It can be seen that .
Thus, path is either better than or the same as path ; that is, using path can ensure the best result. Therefore, based on the new concept of common lines, the optimal path via link uses the first arc of link having a departure time later than the arrival time.

Proposition A.2. The optimal path does not use a train that departs from node later than .

Proof. Assuming that train departs from node at and that , then the train arrives at the destination at . According to the reverse path algorithm, we know that . If not, then should be . According to Proposition 1, no optimal path’s arrival time can be later than . Hence, the optimal path does not use a train which departs from node later than .
Furthermore, if path can be the optimal path, then according to Proposition A.2 we havewhere is the departure time at node via path , unit: mins.

Notations

:The accessibility of node
:The upper boundary, , unit: mins
:The upper boundary, , unit: mins
:The upper boundary of the extended algorithm, unit: mins
:The fare for path from node to , unit: yuan
:The smallest fare from the origin to the destination , unit: yuan
:The smallest ticket fare for the present line from the last transfer node , unit: yuan
:The weighted cost for path from node to , unit: mins
:The new weighted cost for path from home zone to end zone , unit: mins
:The total weighted cost of path from home zone to end zone , considering the waiting time at home or office and the nonadditive fare, unit: mins
:The temporary cost along the path , unit: mins
:The destination
:The end zone
:The weighted function for journey time using path from node to , unit: mins
:The weighted function of fare using path from node to , converted to time, unit: mins
:The home zone
or :The identification for nodes
:The identification for paths
:The identification for trains
:The identification for links
:The maximum number of transfers for a journey
:The origin
:The optimal path departing from the origin to the destination at
:The present best path departing from the origin to the destination at
:The penalty for in-vehicle time,
:The penalty for transfer, , unit: mins
:The penalty for waiting time,
:The penalty for waiting at home or office,
:The penalty for walking time,
:The penalty for a journey between zones and stations,
:The quickest path departing from the origin to the destination at
:The identification for stations
:The number of transfers for path from node to
:The departure interval, unit: mins
:The in-vehicle time for path , unit: mins
:The journey time, including waiting time, walking time, and transit time for path from node to , unit: mins
:The tolerance of passengers for waiting at the origin station, unit: mins
:The walking time for path , unit: mins
:The waiting time at stations for path , unit: mins
:The arrival time at node via path , unit: mins
:The actual clock time for the arrival time at the end zone , using the quickest path in the th departure, unit: mins
:The actual clock time when train departs at node , unit: mins
:The earliest arrival time at node if departing from the origin at , unit: mins
:The earliest arrival time at node from the destination in the reversed network, unit: mins
:The earliest departure time at home zone , unit: mins
:The actual clock time for the earliest departure time at the origin , unit: mins
:The actual clock time for the departure time at home zone , unit: mins
:The actual clock time for the departure time at the origin , unit: mins
:The departure time at node via path , unit: mins
:The latest arrival time at the destination , unit: mins
:The latest arrival time at the end zone , unit: mins
:The latest departure time to the destination at node , unit: mins
:The journey time of zone link between a zone and a station , unit: mins
:The value of time, unit: min/yuan
:The weighted cost for path from node to , used in Tong and Richardson’s algorithm, unit: mins
:The identification for zones.

Competing Interests

The authors declare that they have no competing interests.

Acknowledgments

The work described in this paper was supported by a grant from the Research Grants Council of the Hong Kong Special Administrative Region (Project no. [T32-101/15-R]). The first author was also supported by two scholarships (a Postgraduate Scholarship from the University of Hong Kong and a University Postgraduate Fellowship from the Jessie and George Ho Charitable Foundation).