• <tr id="yyy80"></tr>
  • <sup id="yyy80"></sup>
  • <tfoot id="yyy80"><noscript id="yyy80"></noscript></tfoot>
  • 99热精品在线国产_美女午夜性视频免费_国产精品国产高清国产av_av欧美777_自拍偷自拍亚洲精品老妇_亚洲熟女精品中文字幕_www日本黄色视频网_国产精品野战在线观看 ?

    Efficient Route Planning for Real-Time Demand-Responsive Transit

    2024-05-25 14:39:50HongleLiandSeongKiKim
    Computers Materials&Continua 2024年4期

    Hongle Li and SeongKi Kim

    1Development Department,Changseol Build System,Daegu,42601,South Korea

    2Division of Software Convergence,Sangmyung University,Seoul,03016,South Korea

    ABSTRACT Demand Responsive Transit(DRT)responds to the dynamic users’requests without any fixed routes and timetables and determines the stop and the start according to the demands.This study explores the optimization of dynamic vehicle scheduling and real-time route planning in urban public transportation systems,with a focus on bus services.It addresses the limitations of current shared mobility routing algorithms,which are primarily designed for simpler,single origin/destination scenarios,and do not meet the complex demands of bus transit systems.The research introduces an route planning algorithm designed to dynamically accommodate passenger travel needs and enable real-time route modifications.Unlike traditional methods,this algorithm leverages a queue-based,multi-objective heuristic A?approach,offering a solution to the inflexibility and limited coverage of suburban bus routes.Also,this study conducts a comparative analysis of the proposed algorithm with solutions based on Genetic Algorithm (GA) and Ant Colony Optimization Algorithm (ACO),focusing on calculation time,route length,passenger waiting time,boarding time,and detour rate.The findings demonstrate that the proposed algorithm significantly enhances route planning speed,achieving an 80–100-fold increase in efficiency over existing models,thereby supporting the real-time demands of Demand-Responsive Transportation (DRT) systems.The study concludes that this algorithm not only optimizes route planning in bus transit but also presents a scalable solution for improving urban mobility.

    KEYWORDS Autonomous bus route planning;real-time dynamic route planning;path finding;DRT bus route optimization;sustainable public transport

    1 Introduction

    With the recent development of Internet/Internet of Things technology,more tasks can be performed through portable smartphones,and the emergence of shared bicycles,shared taxis,etc.,has also brought revolutionary changes to the way people travel.As a result of these personal devices and the shared mobility,smartphones enable various services for public transportation,which include the schedule-checking,the routes-checking of bus,and the confirmation of the passenger numbers.On the other hands,Demand Responsive Transport(DRT,Demand Responsive Transit is a transit service operating in response to calls from passengers or their agents to the operator,who schedules a vehicle to pick up the passengers to transport them to their destinations)has been welcomed by many passengers for its economical,flexible,and environmentally friendly features,and has also greatly changed the way people travel[1,2].Initially,DRT refers to a transportation service that can change the itinerary route according to traffic demand,which includes dial-a-ride transit,flexible transport services,and nonemergency medical transport [3].With the diversification of transportation modes,the recent DRT refers to call-and-answer public transport services provided in areas with rare passenger demand.In these areas,regular bus service is generally not considered economically viable,e.g.,in rural and peri-urban areas[4].In other words,DRT public transport changes the route of each trip according to the passenger’s demand,and the route is determined by the passenger’s demand,without using a fixed route or timetable.Therefore,unlike traditional public transportation,a DRT bus can avoid the drawbacks of fixed routes,low flexibility,and low vehicle occupancy rates[5,6].Moreover,compared with private transportation based on Mobility on demand(MOD,Mobility on demand is an integrated and connected multi-modal network of safe,affordable,and reliable transportation options that are available and accessible to all travelers),a DRT bus exhibits characteristics such as economy,energy efficiency,and environmental friendliness [7].However,the achievement of these goals requires an efficient route-planning algorithm capable of real-time responsiveness.

    DRT buses are different from the private cars or bicycles in the following aspects.First,the routes of DRT buses are undetermined and continuously vary according to user’s demand.Second,every passenger has a specific origin and destination.As passengers board and disembark,the composition of users is constantly changing,which gives DRT buses a notable multi-origin and multi-destination characteristic during transportation[8].Traditional single-route planning algorithms,such as shortest path algorithms or heuristic search algorithms,are not applicable to DRT buses due to this difference[9,10].Besides the multi-origin and multi-destination,the routes with excessive turns,and the balance of passengers’waiting time,travel time,and detour time(the difference between the time through the DRT bus and the time through with the ordinary bus to reach the destination),need to be considered while planning the route for DRT buses.Consequently,this problem becomes complex and challenging to solve by these factors.

    Nevertheless,due to the efforts of numerous scholars over the past several decades,various route planning algorithms have been developed for practical use in public transportation,such as those based on Genetic Algorithm (GA) and those based on Ant Colony Optimization (ACO) or Simulated Annealing (SA) [11,12].However,these algorithms were not designed to solve the realtime bus route planning problems;rather,their primary purpose was to obtain globally optimal or near-optimal solutions.Therefore,these algorithms typically employ iterative processes to optimize results,frequently at the cost of long search times.Because of this reason,it is difficult to apply them for planning the route for the DRT bus.Although a reduced number of iterations can improve search performance,it may result in wrong routes in many cases[1,13].In other words,using these algorithms frequently fails to strike the balance between real-time responsiveness and efficiency for the DRT system.In practice,DRT route planning typically involves a trade-off between optimal routes and planning time[14].

    To address these issues,this study aims to concretize the research question as follows: How can an optimal route for a bus be planned in a complex road network,given that the number and locations of origins and destinations change dynamically? The contributions of this study can be summarized as follows.First,this paper proposes a novel dynamic route planning algorithm that is real-time,efficient,and logically straightforward.Second,this paper compares the proposed algorithm with popular GA-based and ACO-based route planning schemes under equivalent conditions.Third,through experiment data,the high efficiency and superior performance of the proposed real-time dynamic route planning algorithm were demonstrated.

    This paper is organized as follows: In Section 2,current problems encountered in the research process of bus route planning algorithms are described in detail,as well as effective solutions proposed by various researchers,and the content is summarized and analyzed.In Section 3,the basic principle and algorithm of the proposed route planning algorithm is introduced.In Section 4,this paper shows the comparison results of multiple route planning algorithms based on the principle of comparison and confirm the effectiveness and superiority of the proposed real-time dynamic route planning algorithm through specific and detailed data.In Section 5,the proposed algorithm is summarized and evaluated based on the evaluation results,and future directions for improvement and research content of the algorithm are mentioned.

    2 Related Works

    Bus route planning algorithms can be improved using algorithms for the Vehicle Routing Problem(VRP,Vehicle Routing Problem is a combinatorial optimization problem of finding a set of routes for a fleet of vehicles that minimizes travel time) and the Traveling Salesman Problem (TSP,Traveling Salesman Problem is the problem of finding the shortest path that visits a set of customers and returns to the first).The TSP is a special case of the VRP,and it has been proven by Gaery and others that the TSP is an NP-hard problem [15].Consequently,the VRP is also an NP-hard problem [16].However,in traditional solutions for both the TSP and VRP,the most representative solutions mainly involve metaheuristic algorithms.These metaheuristic algorithms primarily include GA,SA,ACO,and neural network algorithms[2,17,18].Because of the criticality of the problem,numerous scholars have continuously researched,tested,evaluated,and optimized these algorithms for several decades.

    For example,in an article published by Asih et al.,they compared GA,ACO,particle swarm optimization,and SA algorithms with two distinct sets of cases to verify their performance.The results indicated that both ACO and SA algorithms consistently found the shortest distances in the two different case scenarios [19].In another study led by Hosam and Ashraf,they compared the performance of SA algorithms with the GA and ACO algorithms in terms of execution time and shortest distance.Through testing,they found that SA,ACO,and GA have their advantages and disadvantages.SA demonstrated the shortest execution time,but it was not optimal in terms of the shortest distance measurement,where ACO significantly outperformed GA and SA.This demonstrates that ACO,GA,and SA are mainstream algorithms,each exhibiting its strengths in various aspects [20].Similarly,Valdez et al.considered the ACO algorithm as a widely recognized efficient route optimization algorithm.They compared GA and SA through data,substantiating their viewpoint[21].In their research,Osaba,Javier,and others analyzed the advantages and disadvantages of SA,tabu search,and variable neighborhood search in three different scenarios within the Basque region of Spain.According to their conclusion,SA provides optimal solutions for solving the TSP or VRP [22].However,in a study by Gong and Fu,they focused on the routing problem of vehicles transporting perishable goods,developing a novel solution based on the ACO algorithm and considering factors such as vehicle and transportation costs and shelf-life losses.They termed this algorithm ABC-ACO.Their published research results showed that their algorithm,while meeting the requirements,improved performance by 20.8%and reduced costs by 15.9%,making it a representative successful research case[23].This is the fundamental reason why this paper chose the ACO algorithm as a comparison object.

    After a detailed analysis of the characteristics of the DRT bus route planning problem,this study focuses on multiple origins,multiple destinations,dynamic changes in starting/ending points,and the need to balance user riding time and waiting time as research priorities.This study proposes a novel real-time dynamic route planning algorithm that addresses these issues efficiently while considering user experience.By designing comparative experiments,this paper scientifically compared and analyzed data with widely used GA and SA,thereby demonstrating the effectiveness of the proposed real-time dynamic route planning algorithm.

    3 Design and Principles of Algorithm

    3.1 Overview

    In this section,a real-time dynamic route planning algorithm suitable for DRT buses is proposed,and the principle of the algorithm is explained in detail.The algorithm is divided into three parts.First,bus stops are mapped based on road network nodes.Second,user-riding demands are dynamically managed through a simple queue design.Finally,starting from the current location of the DRT bus,the algorithm employs a real-time metaheuristic route search based on a multi-objective approach for the target bus stops contained in the queue,ultimately achieving dynamic route planning.The algorithm is illustrated in Fig.1.

    Figure 1: Flowchart of real-time dynamic route planning algorithm

    The proposed dynamic route planning algorithm mainly consists of the following four steps:

    1.Generate a target queue and place all received user starting stations in the target queue.

    2.Use the multi-objective A?algorithm to search for routes in the stations within the target queue.

    A) Obtain the current latitude and longitude of the bus to determine its road link node.

    B) Calculate the heuristic functionh(n)containing turning weights with the road node where the bus is located as the origin.

    C) Obtain the bus stop with the smallest heuristic value in the target queue as the next stop for the bus and generate the route.

    D) Repeat steps A–C to generate the complete bus route between the bus stops.

    3.After the bus arrives at the user’s bus stop,remove the user’s starting bus stop from the target queue and add the corresponding destination stop to the target queue collection.

    4.Repeat steps 2 and 3 to generate/update routes in real-time.

    In the above steps,note that all processing occurs during the bus’s journey.Therefore,the routes generated by the algorithm constantly change based on the received user riding demands.Whenever a new user riding request is received,the algorithm performs a real-time calculation to update the route,ensuring that the bus always travels according to the latest and most optimal route promptly.

    3.2 Mapping of Bus Stops and Generation of Weighted Network

    The process of mapping bus stops in the road network is necessary before route finding can begin.According to the raw data obtained from the Korean standard node link database,a road in the real world is saved in a bidirectional and segmented manner in the computer database.In other words,a road in the real world is divided into multiple “l(fā)inks”in the positive and negative directions and“nodes”at both ends of the links in the computer world.In addition,bus stops are located adjacent to roads,but their positions are not exactly on the road link nodes.Therefore,the algorithm needs to map the bus stop locations in the road network before effectively planning the route.

    In the process of mapping bus stops to the existing road network,as illustrated in Fig.2,suppose nodesA,B,C,D,E,F,G,andIrepresent road nodes andJandKrepresent bus stops.Taking bus stopJas a case,there are two road links nearby:LinkABandLinkBE.However,in reality,with the naked eye,bus stopJonly belongs to the bus stop on the side ofLinkAB,because the distance between bus stopJandLinkABis shorter than that between bus stopJandLinkBE,that is:in Fig.2,it is shown asd1

    Figure 2: Schematic of bus station location and road link

    This method ensures that a bus stop is accurately mapped to the correct road link,allowing for a more precise representation of the road network structure and ultimately contributing to the efficiency of the proposed dynamic route planning algorithm.

    Once the bus stops have been mapped to the road network,the next step is to generate a weighted network for route planning.The weights assigned to the network include travel time,distance,and other factors that may influence route selection,such as traffic conditions or road restrictions.By incorporating these weights into the network,the proposed algorithm can search for the most efficient and optimal routes based on various criteria.In this paper,this study uses the shortest travel timeas the weight value.If two nodes cannot be directly connected,the weight value is set to 0,indicating no connectivity.Thus,based on the road network in Fig.2,it can be simplified into the following weighted network:

    As a result of the mapping of bus stops and the generation of a weighted network,a simple digital road connectivity network with the shortest travel time as weights is generated.Subsequent steps will then perform route planning based on the target queue using the weighted network.In summary,mapping bus stops to the road network and creating a weighted network are fundamental steps in constructing the proposed real-time dynamic route planning algorithm.These steps enable the algorithm to plan routes accurately based on the actual road network structure and various factors influencing route selection.

    3.3 Multi-Objective A?Algorithm Based on Target Queue

    The multi-objective A?algorithm based on the target queue is the core component of the proposed real-time dynamic route planning algorithm.It is not a single process but rather a treatment throughout the implementation of the route planning algorithm.In particular,steps 1 and 3 involve dynamic modification of the target queue to meet dynamic user boarding demands.

    For example,in the road network shown in Fig.3,there are four user boarding requests:User1,User2,User3,andUser4.During the calculation process,the target queue is called asTarget_List.Then,the initial processing content of the target queue is to first put the departure bus stops of the four users intoTarget_List:Target_List={BSA,BSE,BSF,BSD}.Then,along with the weighted network,the proposed multi-objective A?algorithm generates an optimized bus route.As all processing is accompanied by the movement of the bus,when the bus arrives at the bus stopA,it implies thatUser1has already boarded the bus.Accordingly,the bus stopAshould be removed fromTarget_List,andUser1’s target bus stopFshould be added toTarget_List.In other words,from the perspective ofTarget_List,the boarding action ofUser1mainly involves the following three operations:

    1.AddUser1’s destination bus stopFtoTarget_List.

    2.RemoveUser1’s starting bus stopAfromTarget_List.

    AfterUser1boards the bus,the outcome isTarget_List={BSE,BSF,BSD}.

    Figure 3: Schematic of user’s boarding action and the processing of Target_List

    In the real-time dynamic route planning algorithm,besides the real-time and dynamic processing of the target queue(Target_List),the generation of the bus route is important.The process of route generation is related to a series of issues associated with route changes,such as which route the bus should follow,which bus stop it should head toward first,and where the next target bus stop is.In the process of route search,the proposed multi-objective A?algorithm is designed based on the basic principles and ideas of the multi-heuristic A?algorithm [24,25].The multi-heuristic A?algorithm proposes a composite heuristic function concept for multidimensional constraints on the heuristic function of the original A?algorithm,aiming to make the routes found by the A?algorithm meet multiple real-life constraints,such as satisfying both the shortest length and the fastest arrival,as well as minimizing transportation costs.Therefore,the heuristic function in the multi-heuristic A?algorithm is multidimensional and is set to affect the final generated route,which can balance multiple constraint dimensions.

    In this study,considering the characteristics of multiple target bus stops in the target queue,the multi-objective A?algorithm performs the following calculation processing to determine the driving order of bus stops.First,according to the bus stops saved inTarget_List,calculate the estimated costh(Tn)between the current position of the bus and the bus stops saved inTarget_List.Then,according to the value of the estimated costh(Tn),select the bus station with the smallest estimated cost value as the next target station for the bus.While determining the next target station,generate the bus route between the current position of the bus and the next target station.Subsequently,after modifying the data of the bus station in the target queueTarget_List,take the calculated next target station as the origin and recalculate the next target station to generate the travel route between the two bus stops.Finally,repeat the above process to generate a complete bus route.According to the above process,the function formula of the proposed multi-objective A?algorithm is as follows:

    As shown in Fig.4,suppose the current bus position is atNode(0,0),and the nodes connected to this node areNode(1,0)andNode(0,1).In the calculation,the algorithm needs to use these two nodes as the origin,respectively,and calculate the estimated costh(TA),h(TE),h(TF),andh(TD)of the nodes to the bus stops inTarget_List={BSA,BSE,BSF,BSD}.Finally,the bus stopAwith the minimum estimated costh(TA) is selected as the next target stop,and the route betweenNode(0,0)andNode(2,0)is generated:Node(0,0)->Node(1,0)->Node(2,0).By analogy,with the bus stopAas the origin,the next target stop is searched for until the complete bus route is generated(as depicted in Fig.5).

    Figure 4: Computing the minimum estimated cost h(Tn)

    Figure 5: Overview of the route search process.The bus advances one step,and the algorithm searches for a road node

    3.4 Heuristic Function h(Tn)of Multi-Objective A?Algorithm

    Because the heuristic function used by the original A?algorithm calculates the distance from the current node to the target node as the estimated cost [26],as shown in Fig.6 below,based on the Manhattan distance calculation[27],there are various forms of actual routes between the two points A and B,and their Manhattan distances are equal.However,the blue route is the least practical option for the bus due to its excessive turns,which can cause complexity in bus travel,waste of energy,and confusion for passengers,among other issues.In this paper,this study proposes a solution to this problem by modifying the heuristic functionh(n)in the existing multi-objective A?algorithm.This study definesTnas the“turn weight”value when calculating theh(n)of each target node.

    Figure 6: Multiple routes with the same Manhattan distance between NodeA and NodeB

    The worst-case scenario for turns is an angle of 180°,i.e.,a U-turn is required.In the case of a U-turn,the vehicle returns along the original route,and the estimated cost function becomes twice the original distance.The functionbased on the turning angleθprecisely reflects this characteristic,as the curve in Fig.7.Therefore,in summary,to minimize the number of turns in the route,this study uses the following turn weight:

    Figure 7: The trend chart of the function

    Figure 8: Route changes before and after using the turn weight function.The route generated by the general A?algorithm(left),and the route generated after using the turn weight(right)

    4 Experimental Results

    To objectively evaluate the proposed real-time dynamic route planning algorithm,this study designed experiments based on the single-variable testing principle according to the requirements of the used scenarios.This study defined the tested scenarios as mixed scenarios.As the name suggests,this scenario includes users who have made reservations to use the vehicle in advance,as well as users who appear during the movement of the vehicle and issue real-time ride requests.In addition to the simulation test,this study also conducted a three-month real test of students riding the shuttle bus of Keimyung University in South Korea from November 2021 to February 2022.This study used real student travel data.

    In this paper,this study selects the ride requests of 40 students as the test source.This study uses the ride requests of the first 20 students as reservation users,and the ride requests of the last 20 students are randomly issued after the vehicle operation starts.In this way,the data of 40 students can be used to not only test the algorithm’s response to the reservation scenario but also to test the algorithm’s processing capabilities during the real-time operation of the bus.Based on the ride requests of 40 students,this study provides the latitude and longitude distribution map as shown in Fig.9 below.The red marked point in the figure can be regarded as the current location of the students,and the blue marked point is the destination.

    For the comparison object and evaluation standard of the algorithm,researchers frequently use different test standards.In their study,Lu et al.mainly focused on the travel distance in the tested items [28].In their research,Yoon et al.positioned the test items in terms of service rate,average travel time,average detour time,average walking time,and calculation time [29].The research of Uchimurat et al.is mainly based on travel distance and time[30].Referring to the experimental design of several papers on similar topics,this study decided to start with five aspects:The length and time of the route generated by the algorithm,the average ride time of users,the average detour time,the average detour rate of the route,and the time cost of calculating the route.The route length and route time are mainly key indicators used to evaluate whether the route generated by the algorithm is economical.To transport the same number of passengers,a shorter route can consume less fuel,which better reflects the economy and practicality of the route planned by the algorithm.The average ride time of users,the average detour time,and the average detour rate of the route are related to the user experience.The average ride time of users is directly related to whether the user can accept the results of the algorithm calculation.If it is too long,the travel time must be unacceptable to users.The average detour time and the average detour rate of the route represent the fit between the overall route of the DRT bus and the route required by the user,which can simultaneously show the economy of the route and the acceptability of the user,it is Composite indicators.

    Figure 9: The distribution of the latitude and longitude coordinates of the starting and ending bus stations in the user’s ride request.The longitude coordinates in the figure are east longitude,and the latitude coordinates are north latitude

    Combined with the description in the second section,this study selected route planning algorithms based on GA and ACO as the comparison objects.Through an objective comparison and analysis of the algorithm on test data,the proposed algorithm can be accurately evaluated.The algorithm calculation environment of this study was conducted in the Windows 10 Edu x64 version environment,with hardware consisting of an Intel Core i7-9700K CPU,16 GB memory,and an NVIDIA RTX2080Ti graphics card.

    As mentioned earlier,this study chose three sets of travel data from 20 students each,out of approximately 300 students’travel data collected over three months,and organized the data according to travel time to satisfy the three test scenarios.As the proposed real-time dynamic route planning algorithm is based on the multi-objective A?algorithm,this paper referred to the algorithms as“MO A?,”“GA,”and“ACO”for ease of comparison in the experimental data.

    For the GA and ACO used as comparative objects,this study directly implemented the GA by referring to the research on DRT bus planning by Jin et al.[31].In terms of parameter settings,this study referred to several papers on similar topics,including those by Tamseh and others,and Li Min and others [32,33].Ultimately,this study conducted tests and comparisons using parameters such as population size,number of generations,crossover rate,and mutation rate,as shown in Table 1.Similarly,for the ACO algorithm,this study referred to research on ACO for bus route planning in urban bus networks by Wei and others,and research on route planning for mobile robots by Zhang and others [13,34].Based on the basic principles of the algorithm,this study implemented the code and used parameter information about the ACO algorithm for algorithm comparison in this study,as shown in Table 1.

    Table 1: Parameters of GA and ACO used as comparison objects in this study

    During the testing process,since the purpose of this study is to propose a route planning algorithm that can satisfy DRT services in real time,the dynamic and real-time nature of the algorithm is crucial.Consequently,in the tests in mixed scenarios,this study primarily analyzed and evaluated the computation results within 10 s for each algorithm.

    4.1 Comparison of Test Results

    In the mixed scenario,this study divided the boarding data of 40 users into two parts:One part accounts for users who made reservations in advance,and the other part for users of boarding requests were received in real-time after the DRT bus departs.In such a test scenario,first,compare the total distance and time of routes planned by different algorithms.As shown in Fig.10,the routes planned by MO A?and ACO algorithms show good performance in terms of travel time and total distance.In particular,the MO A?algorithm proposed in this study shows its advantages over the other two algorithms,this also indicates that the route planned by the GA algorithm may not be optimal (see the following text for detailed analysis content).Although the route planned by the MO A?algorithm is the“shortest route”,whether it is an“optimized route”needs to be evaluated by comprehensively considering the user’s average travel time,average detour rate,and other criteria.

    Figure 10: Overview of length and travel time of routes planned by the three algorithms

    In terms of specific data,as depicted in Fig.10,whendemand=4,the length of the route planned by the GA is 239880 m,whereas that planned by the ACO and MO A?algorithms is 78747.97 and 77947.73 m,respectively.The route length of the GA algorithm is unexpectedly three times that of the other two algorithms,largely due to its inability to complete the calculation within the specified 10 s.The difference between the route lengths of the MO A?and ACO algorithms is only 800.24 m,which is approximately the distance of one or two bus stops.Nevertheless,as mentioned above,whether the route planned by the MO A?algorithm is the “optimal route”still needs to be evaluated while considering other multifaceted standards.

    In terms of passenger user experience,as shown in Fig.11,in the case of 40 passengers taking DRT buses,the average travel time of users using the GA is incomparable with that of the ACO and MO A?algorithms.The per capita travel time of the GA is 2600.149 s (approximately 43.34 min),and the GA cannot fully iteratively calculate within 10 s as mentioned earlier.The average travel time of users with the MO A?algorithm is 1251.677 s (approximately 20.85 min),and the average travel time of users with the ACO algorithm is 1101.72 s (approximately 18.362 min),with a difference of approximately 2.5 min.Such differences result in a completely different user experience for passengers because the per-capita travel time of the GA algorithm is 2.08 timesthat of the MO A?algorithm and 2.36 timesthat of the ACO algorithm.

    Figure 11: Average travel time of routes planned by the three algorithms

    In terms of the average detour rate of users,the ACO and MO A?algorithms have maintained consistently low detour rates of 3.17 and 2.97,respectively,showing a steady linear upward growth trend.In contrast,the GA has the characteristics of a disorderly rise.To explain in particular,the definition of the user’s average detour rate is defined as the ratio of the actual moving route distance of users taking mobility DRT to the moving route distance of users taking ordinary DRT buses to their destinations,that is:

    From Fig.12,whendemand=12 anddemand=13,the average bypass rate of users displayed by the GA is almost the same,but there is a significant difference in their initial detour rates(10.43161 and 12.69808,respectively).This indicates that the optimal routes generated by the algorithm are similar in both situations,but the initial routes have significant differences,which also indirectly supports the earlier point that the selection of initial values in probabilistic optimization algorithms is randomly generated [35,36].Similarly,the ACO algorithm also exhibited this feature fordemand=14 anddemand=15.

    In terms of the calculation performance of route planning,as depicted in Figs.13 and 14,the proposed MO A?algorithm is still the fastest.In the case of 40 passengers,the total processing time is 0.129 s,and the average processing time for 40 calculations is 0.06318 s.In contrast to the ACO and GA algorithms,when the ACO algorithm is completed by 40 passengers,the minimum calculation time is 9.268 s and the average processing time for 40 calculations is 5.27655 s,whereas the GA algorithm is 7.299 and 6.20445 s,respectively.If the average processing time of 40 times of the ACO algorithm is used as a benchmark,the processing speed of the MO A?algorithm is 82.52 times≈82.516 higher than that of the ACO algorithm.Taking the GA algorithm as the benchmark,the processing speed of the MO A?algorithm is 97.2 times≈97.203 higher than that of the GA algorithm.

    Figure 12: The average detour rate of the routes planned by the three algorithms

    Figure 13: The time spent on the calculation of the three algorithms

    In addition,the algorithm goal is not only to be able to dynamically handle the user’s request to get on and off the vehicle,but also to meet the requirements of real-time calculation and real-time response.However,judging from the above measurement results,ACO and GA are unable to meet the immediacy of Mobility DRT bus route planning.In contrast,the algorithm proposed in this study can process all data within 0.2 s,fully satisfying the real-time requirements for Mobility DRT bus route planning.Therefore,considering the evaluation criteria from multiple perspectives,the proposed MO A?algorithm can sufficiently meet the needs of DRT bus route planning.

    Finally,since the GA algorithm is at a disadvantage in each calculation result,it is necessary for us to analyze the reasons.As mentioned before,this may be because both the ACO algorithm and the GA algorithm are designed to find the optimal solution.In theory,the results generated by these algorithms should improve with the passage of computing time [37,38];However,in this study,to pursue the real-time response characteristics of the algorithm,the maximum calculation time was set to 10 s.In other words,the main reason why the GA algorithm’s calculation results are at a disadvantage is most likely that the GA algorithm did not find the global optimal solution within the limited calculation time(10 s).

    Figure 14: The time spent on the calculation of the MO A?algorithm

    To confirm the aforementioned reasons,this study presents a trend chart of the algorithm results over time for 20 user transportation demands,as illustrated in Fig.15.From the figure,the GA exhibits a linear downward trend within 10 s,with a slow decline rate and occasional periods of near-horizontal lines,such as between 3.0 and 3.4 s.This indicates that the GA has become trapped in redundant iterative calculations near a local optimal solution.Furthermore,a noticeable change can be observed in the ACO algorithm,which initially presents an almost linear trend but exhibits a rapid decline between approximately 0.3 and 0.5 s;this phenomenon is related to the characteristics of the ACO algorithm.The ACO algorithm searches for optimal routes by releasing pheromones on each path segment.In the early stages of the algorithm,insufficient pheromone release by ants on each path segment results in a slower initial calculation speed[39,40].As pheromones accumulate on each segment,the convergence speed of the algorithm increases,resulting in a nearly linear downward trend that continually approaches the optimal route.The optimal route is first found after 1.983 s of algorithm execution and is confirmed through repeated iterations,ultimately stabilizing at 2.6 s when no further route changes occur.

    To summarize,the proposed real-time dynamic route planning algorithm is always satisfactory in mixed scenarios.Although its planned route is not always the“shortest route,”the distance difference within 3–5 km is acceptable,and it can exhibit excellent performance in other user experience aspects and provide a better user experience.In addition,the performance of the proposed algorithm is fast,82.5 and 97.2 times faster than the ACO and GA algorithms and it can complete route planning for bus users within 1 s or even 0.2 s.Moreover,the algorithm shows stability of calculation in test scenarios,which is incomparable to GA-and ACO-based route planning algorithms.Based on this result,this study also believes that the MO A?algorithm will be able to handle it perfectly if it is a full reservation scenario or a full real-time request scenario.

    Figure 15: The changing trend of the total time for each algorithm to find the route within 10s

    5 Conclusion

    Recently,on-demand mobility services have been developed,and it is expected that the demand for the services will further increase with the personal requirements in the future.The on-demand mobility service based on DRT buses will be more widely used due to its more economical and affordable characteristics.For DRT bus services to operate stably and efficiently,it is critical to reasonably allocate and dispatch vehicles,and to conduct real-time route planning according to passenger’s requirements.

    In this study,the operating characteristics of DRT buses and the algorithm’s requirements can be summarized as follows: First,it needs to be able to update routes in real time;Second,it needs to be able to dynamically respond to users’ride requests.Based on the characteristics of DRT buses,this study designed an algorithm(Real-time Dynamic Route Planning Algorithm)and explained its design in detail.Also,this study verified the suggested algorithm based on the real user travel data.To compare its results,a comparative test was conducted with the existing solutions based on the ACO algorithm and the GA algorithm,and both the total length and the generation time of the route,as well as the average travel time and average detour rate of users,were evaluated.The suggested algorithm can implement route planning and vehicle scheduling within 0.2 s.Based on the special structure this study proposed,the efficiency of route planning is improved by 82.5 times and 97.2 times compared with the ACO algorithm and GA algorithm,respectively.It can complete dynamic route planning for 40 passengers in 0.2 s.This calculation performance fully meets the real-time calculation requirements of on-demand DRT buses.

    However,the suggested algorithm can be improved further.First,the working principle of the proposed algorithm is mainly based on the queue-based multi-objective A?algorithm.Therefore,with the increase in the number of passengers,the algorithm has to be rerun to plan a new route.This can result in heavy computation and increase more memory consumption when a new user takes public transportation.Second,in the actual operation of the bus,if the bus receives a passenger request from a bus stop less than 100 m ahead,the bus may be driving in the central lane because the bus driver has not made corresponding preparations in advance.Changing lanes to the bus stop can be difficult and dangerous,which may result in the user’s boarding request being ignored or assigned to the next bus.This results in a certain degree of resource waste and a negative user experience,as users may feel ignored when they see the bus drive away without stopping even though they sent a boarding request before the bus arrived.Third,although the algorithm can handle regional-level DRT bus operations,for broader practical operations,it still needs to expand the road network and add multiple DRT buses for joint operation testing to improve the algorithm to enhance the robustness of the algorithm.Besides the issues above,we plan to operate the algorithm in a wider urban transportation network and also plan to apply the algorithm to games in future work.

    Acknowledgement:Not applicable.

    Funding Statement:Not applicable.

    Author Contributions:The authors confirm contribution to the paper as follows: Study concept and design: Hongle Li,SeongKi Kim;Algorithm development and testing: Hongle Li;Manuscript supervision: SeongKi Kim;All authors reviewed the results and approved the final version of the manuscript.

    Availability of Data and Materials:Road information data comes from the national standard node link database of the Korean National Transportation Information Center.The source data of the test comes from the travel records of students participating in the test.Under the premise of academic research,the data set can be obtained by contacting the corresponding author(skkim9226@gmail.com).

    Conflicts of Interest:The authors declare that they have no conflicts of interest to report regarding the present study.

    国产日韩欧美视频二区| 成人黄色视频免费在线看| 色网站视频免费| 亚洲av国产av综合av卡| 99香蕉大伊视频| 欧美黄色淫秽网站| 看免费av毛片| 亚洲欧美中文字幕日韩二区| 午夜精品国产一区二区电影| 午夜免费观看性视频| 黑丝袜美女国产一区| 香蕉丝袜av| 日韩一本色道免费dvd| 丝袜人妻中文字幕| av又黄又爽大尺度在线免费看| 激情五月婷婷亚洲| 一本久久精品| 丝袜在线中文字幕| 国产在线观看jvid| 人妻 亚洲 视频| 国产亚洲欧美在线一区二区| 视频在线观看一区二区三区| 成年女人毛片免费观看观看9 | 人妻 亚洲 视频| 欧美激情 高清一区二区三区| 捣出白浆h1v1| 黑丝袜美女国产一区| 亚洲成国产人片在线观看| 女警被强在线播放| 亚洲天堂av无毛| 成人亚洲欧美一区二区av| 久久女婷五月综合色啪小说| 亚洲九九香蕉| 欧美人与性动交α欧美精品济南到| 精品久久蜜臀av无| 一区二区三区四区激情视频| 亚洲精品日本国产第一区| 99九九在线精品视频| 一二三四在线观看免费中文在| 亚洲欧美中文字幕日韩二区| 欧美精品亚洲一区二区| 国产日韩欧美视频二区| 亚洲 国产 在线| 国产xxxxx性猛交| 国产欧美日韩精品亚洲av| 欧美精品一区二区大全| 一区在线观看完整版| 国产成人免费观看mmmm| 男女边吃奶边做爰视频| 久久综合国产亚洲精品| netflix在线观看网站| 女人爽到高潮嗷嗷叫在线视频| 午夜激情av网站| 亚洲精品第二区| 婷婷成人精品国产| 亚洲图色成人| 亚洲第一av免费看| 国产av一区二区精品久久| kizo精华| 丝袜美腿诱惑在线| 母亲3免费完整高清在线观看| 亚洲激情五月婷婷啪啪| 观看av在线不卡| 亚洲国产av影院在线观看| 日韩av免费高清视频| 高潮久久久久久久久久久不卡| 我要看黄色一级片免费的| 一级a爱视频在线免费观看| 国产高清视频在线播放一区 | 91字幕亚洲| 久久鲁丝午夜福利片| 免费观看a级毛片全部| 一区二区三区四区激情视频| 亚洲成人免费av在线播放| 精品国产乱码久久久久久男人| 两人在一起打扑克的视频| 一区二区三区乱码不卡18| 丁香六月天网| 电影成人av| 成人影院久久| 每晚都被弄得嗷嗷叫到高潮| 精品国产乱码久久久久久男人| 日韩中文字幕视频在线看片| 一级黄片播放器| 亚洲第一青青草原| 午夜av观看不卡| 黄色a级毛片大全视频| 欧美成人精品欧美一级黄| 国产一区二区激情短视频 | 在线观看免费高清a一片| 99久久人妻综合| 久久国产精品大桥未久av| 两人在一起打扑克的视频| 欧美 亚洲 国产 日韩一| 国产精品久久久av美女十八| 久久久久久久久久久久大奶| 国产高清国产精品国产三级| 狠狠精品人妻久久久久久综合| videosex国产| 久久久久视频综合| 久久久精品区二区三区| 久久久国产精品麻豆| 日韩一卡2卡3卡4卡2021年| 又黄又粗又硬又大视频| 精品一品国产午夜福利视频| 如日韩欧美国产精品一区二区三区| 我的亚洲天堂| 亚洲av成人不卡在线观看播放网 | 一本色道久久久久久精品综合| 欧美性长视频在线观看| 亚洲,欧美精品.| 成人黄色视频免费在线看| 美女福利国产在线| 成年动漫av网址| 亚洲激情五月婷婷啪啪| 黄色毛片三级朝国网站| 国产真人三级小视频在线观看| a级毛片在线看网站| 国产成人啪精品午夜网站| 一边摸一边做爽爽视频免费| 亚洲中文av在线| 两人在一起打扑克的视频| 色婷婷久久久亚洲欧美| 国产欧美日韩精品亚洲av| 日韩制服骚丝袜av| 777久久人妻少妇嫩草av网站| 1024香蕉在线观看| 国产一区二区在线观看av| 欧美 亚洲 国产 日韩一| 人妻 亚洲 视频| 如日韩欧美国产精品一区二区三区| 在线观看免费高清a一片| av在线老鸭窝| 日韩大码丰满熟妇| 国产精品久久久久久精品电影小说| 日韩 欧美 亚洲 中文字幕| 亚洲av国产av综合av卡| 久久精品国产综合久久久| 欧美在线黄色| 欧美亚洲 丝袜 人妻 在线| 精品少妇久久久久久888优播| www.自偷自拍.com| 天堂中文最新版在线下载| 国产成人啪精品午夜网站| 久久精品久久久久久久性| 久久久国产精品麻豆| 精品欧美一区二区三区在线| 亚洲精品中文字幕在线视频| 国产成人一区二区三区免费视频网站 | 久久青草综合色| 女人高潮潮喷娇喘18禁视频| 一级,二级,三级黄色视频| 久久久久久久精品精品| 国产在线一区二区三区精| 高清黄色对白视频在线免费看| 国产高清国产精品国产三级| 韩国精品一区二区三区| 日韩av在线免费看完整版不卡| 午夜免费鲁丝| 在线观看人妻少妇| 久久天躁狠狠躁夜夜2o2o | 免费观看av网站的网址| 天堂8中文在线网| 成人国产一区最新在线观看 | 亚洲精品中文字幕在线视频| 国产成人精品久久久久久| 成人18禁高潮啪啪吃奶动态图| 国产欧美日韩一区二区三区在线| cao死你这个sao货| 亚洲精品久久午夜乱码| 波多野结衣av一区二区av| 男女边摸边吃奶| 国产1区2区3区精品| 国产一区有黄有色的免费视频| 18在线观看网站| 看免费av毛片| av视频免费观看在线观看| 日本午夜av视频| 婷婷色综合www| 蜜桃在线观看..| 国产成人一区二区三区免费视频网站 | av在线老鸭窝| 别揉我奶头~嗯~啊~动态视频 | 亚洲国产看品久久| 亚洲熟女精品中文字幕| 日韩免费高清中文字幕av| 午夜免费男女啪啪视频观看| 亚洲av男天堂| 老汉色∧v一级毛片| 成人亚洲欧美一区二区av| 激情五月婷婷亚洲| 亚洲欧美色中文字幕在线| 久久九九热精品免费| netflix在线观看网站| 成人午夜精彩视频在线观看| 99热国产这里只有精品6| 热99国产精品久久久久久7| 欧美黄色片欧美黄色片| 又粗又硬又长又爽又黄的视频| 欧美亚洲日本最大视频资源| 人成视频在线观看免费观看| 亚洲av片天天在线观看| 国产精品二区激情视频| 熟女少妇亚洲综合色aaa.| 亚洲精品国产区一区二| 电影成人av| 亚洲中文日韩欧美视频| 亚洲,欧美,日韩| 一本—道久久a久久精品蜜桃钙片| 国产日韩欧美视频二区| 男女免费视频国产| 看免费av毛片| 宅男免费午夜| 又粗又硬又长又爽又黄的视频| 国产成人欧美| 亚洲精品自拍成人| 欧美性长视频在线观看| 亚洲av电影在线进入| 男女高潮啪啪啪动态图| 欧美精品高潮呻吟av久久| 国产精品偷伦视频观看了| 一本久久精品| 国产免费现黄频在线看| 青青草视频在线视频观看| 搡老岳熟女国产| 一区在线观看完整版| 亚洲精品日本国产第一区| 黄色一级大片看看| 青青草视频在线视频观看| 国产在线观看jvid| 在线观看免费午夜福利视频| 国产精品一二三区在线看| 香蕉丝袜av| 精品一区二区三区av网在线观看 | a 毛片基地| 人人妻人人澡人人爽人人夜夜| 欧美少妇被猛烈插入视频| 亚洲国产精品国产精品| 99精品久久久久人妻精品| 9热在线视频观看99| 美女高潮到喷水免费观看| 国产亚洲午夜精品一区二区久久| 波多野结衣av一区二区av| 亚洲色图 男人天堂 中文字幕| 亚洲自偷自拍图片 自拍| 国产一区二区三区综合在线观看| 国产人伦9x9x在线观看| 午夜福利乱码中文字幕| 一本色道久久久久久精品综合| 国产一级毛片在线| 大香蕉久久成人网| 狂野欧美激情性bbbbbb| 亚洲av日韩精品久久久久久密 | 在线观看一区二区三区激情| 日韩一卡2卡3卡4卡2021年| 激情视频va一区二区三区| 亚洲七黄色美女视频| 啦啦啦视频在线资源免费观看| 国产精品久久久人人做人人爽| 少妇人妻久久综合中文| 建设人人有责人人尽责人人享有的| 久久人妻熟女aⅴ| 久久 成人 亚洲| 国产91精品成人一区二区三区 | 极品人妻少妇av视频| 啦啦啦啦在线视频资源| 亚洲国产欧美一区二区综合| 老司机深夜福利视频在线观看 | 18禁黄网站禁片午夜丰满| 欧美成人午夜精品| 伊人亚洲综合成人网| 午夜福利视频精品| 欧美人与善性xxx| 国产成人啪精品午夜网站| 国产亚洲精品第一综合不卡| 精品一区二区三区四区五区乱码 | 日韩av不卡免费在线播放| 一级毛片我不卡| 日韩,欧美,国产一区二区三区| 久久久精品94久久精品| 久久精品熟女亚洲av麻豆精品| 亚洲av成人精品一二三区| 精品国产超薄肉色丝袜足j| 亚洲av欧美aⅴ国产| 美国免费a级毛片| 国产一区二区三区综合在线观看| 国产成人av激情在线播放| 午夜福利乱码中文字幕| 久久久国产一区二区| 极品少妇高潮喷水抽搐| 国产精品秋霞免费鲁丝片| 妹子高潮喷水视频| 日韩大码丰满熟妇| 国产视频一区二区在线看| 久久99一区二区三区| 久久精品国产综合久久久| 亚洲国产日韩一区二区| 久久青草综合色| 宅男免费午夜| 中国国产av一级| 久久精品aⅴ一区二区三区四区| 18禁裸乳无遮挡动漫免费视频| 久久久久久久国产电影| 香蕉国产在线看| 水蜜桃什么品种好| 一级片免费观看大全| 日韩免费高清中文字幕av| 成人免费观看视频高清| av在线播放精品| 亚洲第一青青草原| 久久国产精品人妻蜜桃| 国产一卡二卡三卡精品| 国产人伦9x9x在线观看| 国产不卡av网站在线观看| 精品欧美一区二区三区在线| 亚洲第一av免费看| 精品欧美一区二区三区在线| 国产又爽黄色视频| 亚洲国产欧美在线一区| 国产真人三级小视频在线观看| av片东京热男人的天堂| 男女午夜视频在线观看| 桃花免费在线播放| 亚洲少妇的诱惑av| 操美女的视频在线观看| 国产亚洲av片在线观看秒播厂| 日韩伦理黄色片| 黄色 视频免费看| 超色免费av| 777久久人妻少妇嫩草av网站| 久久精品国产亚洲av高清一级| 国语对白做爰xxxⅹ性视频网站| 欧美激情极品国产一区二区三区| 亚洲,一卡二卡三卡| 久久av网站| 中文字幕最新亚洲高清| 亚洲,欧美精品.| 伦理电影免费视频| 国产欧美日韩一区二区三 | 亚洲 欧美一区二区三区| 亚洲第一青青草原| 我的亚洲天堂| 一二三四社区在线视频社区8| 国产高清国产精品国产三级| 亚洲国产精品999| 国产精品一区二区在线不卡| 免费在线观看完整版高清| 成人影院久久| 人人妻人人爽人人添夜夜欢视频| 久久人人爽av亚洲精品天堂| 深夜精品福利| 国产99久久九九免费精品| 亚洲,欧美,日韩| 两个人看的免费小视频| 人妻一区二区av| 国产人伦9x9x在线观看| 高清视频免费观看一区二区| 亚洲 欧美一区二区三区| 日本黄色日本黄色录像| 在线观看免费高清a一片| 国产一区二区激情短视频 | 99久久人妻综合| 少妇人妻 视频| 亚洲专区中文字幕在线| 人人妻人人澡人人看| 亚洲 国产 在线| 少妇人妻 视频| www.自偷自拍.com| 成人国产av品久久久| 国产老妇伦熟女老妇高清| 亚洲av日韩在线播放| 免费日韩欧美在线观看| 一级片免费观看大全| 亚洲欧美精品综合一区二区三区| 亚洲av国产av综合av卡| 欧美日韩黄片免| 男人操女人黄网站| 纯流量卡能插随身wifi吗| av福利片在线| 韩国精品一区二区三区| 老司机午夜十八禁免费视频| 国产精品麻豆人妻色哟哟久久| 狂野欧美激情性xxxx| 丝袜喷水一区| av网站在线播放免费| 国产淫语在线视频| 欧美另类一区| 18禁国产床啪视频网站| 日本av手机在线免费观看| 99re6热这里在线精品视频| 亚洲精品久久午夜乱码| 人人妻人人澡人人爽人人夜夜| 精品国产国语对白av| 国产精品一区二区在线观看99| 99久久综合免费| 亚洲av电影在线进入| 91九色精品人成在线观看| 人体艺术视频欧美日本| 国产片特级美女逼逼视频| 亚洲黑人精品在线| 日韩中文字幕欧美一区二区 | 午夜福利视频在线观看免费| 欧美日韩亚洲国产一区二区在线观看 | 亚洲av欧美aⅴ国产| 亚洲欧美一区二区三区国产| 超色免费av| 999精品在线视频| 精品国产乱码久久久久久小说| 久久人人97超碰香蕉20202| 久久这里只有精品19| 亚洲国产精品国产精品| 中文精品一卡2卡3卡4更新| 亚洲国产看品久久| 制服人妻中文乱码| 捣出白浆h1v1| 丰满少妇做爰视频| cao死你这个sao货| 丰满饥渴人妻一区二区三| 亚洲色图 男人天堂 中文字幕| 午夜精品国产一区二区电影| 十分钟在线观看高清视频www| 国产在线观看jvid| av一本久久久久| a级片在线免费高清观看视频| 色视频在线一区二区三区| 美女高潮到喷水免费观看| av国产久精品久网站免费入址| 国产有黄有色有爽视频| 777久久人妻少妇嫩草av网站| 最新的欧美精品一区二区| 国产精品久久久久久精品古装| 69精品国产乱码久久久| 国产野战对白在线观看| 国产激情久久老熟女| 亚洲精品一二三| 久久久久久久精品精品| 色网站视频免费| 五月天丁香电影| 国产精品 国内视频| 在线观看www视频免费| 国产极品粉嫩免费观看在线| 精品亚洲乱码少妇综合久久| 高清av免费在线| 亚洲成人国产一区在线观看 | 亚洲av日韩在线播放| 久久国产精品影院| 别揉我奶头~嗯~啊~动态视频 | 精品国产乱码久久久久久男人| 美女国产高潮福利片在线看| 青草久久国产| 日韩大片免费观看网站| 日韩视频在线欧美| 黑人欧美特级aaaaaa片| 亚洲av电影在线进入| 久久精品亚洲熟妇少妇任你| 又大又爽又粗| 久久人人97超碰香蕉20202| 亚洲精品乱久久久久久| 亚洲视频免费观看视频| 99国产精品99久久久久| 国产成人精品久久二区二区91| 国产亚洲av高清不卡| 国产熟女午夜一区二区三区| 91成人精品电影| 高清av免费在线| 国产伦理片在线播放av一区| 好男人视频免费观看在线| 久久99一区二区三区| 亚洲欧美激情在线| 99热国产这里只有精品6| 少妇精品久久久久久久| 久久午夜综合久久蜜桃| 色94色欧美一区二区| 五月天丁香电影| 久久99精品国语久久久| 嫩草影视91久久| xxx大片免费视频| 国产不卡av网站在线观看| 黄色毛片三级朝国网站| 大话2 男鬼变身卡| 啦啦啦啦在线视频资源| 一级毛片 在线播放| 成人午夜精彩视频在线观看| 高清不卡的av网站| 亚洲一码二码三码区别大吗| 啦啦啦啦在线视频资源| 十分钟在线观看高清视频www| 人妻 亚洲 视频| 亚洲色图综合在线观看| 肉色欧美久久久久久久蜜桃| 国产亚洲av高清不卡| 亚洲欧美成人综合另类久久久| 亚洲第一av免费看| 黄色a级毛片大全视频| 黑丝袜美女国产一区| 国产精品一区二区精品视频观看| 免费观看a级毛片全部| 波多野结衣av一区二区av| 中文字幕最新亚洲高清| 日韩 欧美 亚洲 中文字幕| 久久国产精品人妻蜜桃| 美女脱内裤让男人舔精品视频| 九色亚洲精品在线播放| 中文字幕人妻熟女乱码| 搡老岳熟女国产| 黑人欧美特级aaaaaa片| 国产有黄有色有爽视频| 国产精品一二三区在线看| 日韩一卡2卡3卡4卡2021年| 午夜福利乱码中文字幕| 久久 成人 亚洲| 中文字幕人妻丝袜制服| 建设人人有责人人尽责人人享有的| 精品一区二区三区四区五区乱码 | 亚洲精品乱久久久久久| 一本一本久久a久久精品综合妖精| 亚洲国产最新在线播放| 亚洲人成电影观看| 精品亚洲成a人片在线观看| 男女国产视频网站| 免费高清在线观看日韩| 97精品久久久久久久久久精品| 亚洲欧洲国产日韩| 成人午夜精彩视频在线观看| 国产成人a∨麻豆精品| 男的添女的下面高潮视频| 韩国高清视频一区二区三区| 在线av久久热| 尾随美女入室| 中文字幕精品免费在线观看视频| 两性夫妻黄色片| 精品亚洲成国产av| 中国国产av一级| 丝袜美腿诱惑在线| 久久久久久免费高清国产稀缺| 一本色道久久久久久精品综合| 久久av网站| 亚洲自偷自拍图片 自拍| 国产色视频综合| 国产一区有黄有色的免费视频| 久久久久久久久免费视频了| 久久国产精品大桥未久av| 久久人人爽人人片av| 亚洲伊人久久精品综合| 久久亚洲国产成人精品v| 一区二区三区乱码不卡18| 亚洲五月婷婷丁香| 国产精品久久久av美女十八| 看免费av毛片| 欧美精品人与动牲交sv欧美| 老熟女久久久| 久久午夜综合久久蜜桃| 国产亚洲精品久久久久5区| 亚洲精品在线美女| 色综合欧美亚洲国产小说| 九草在线视频观看| 国产黄色视频一区二区在线观看| 亚洲国产av新网站| 亚洲精品一二三| 高清欧美精品videossex| 制服诱惑二区| 一区福利在线观看| 热re99久久国产66热| 这个男人来自地球电影免费观看| 在线观看人妻少妇| 一级毛片女人18水好多 | 老司机靠b影院| 美女扒开内裤让男人捅视频| 亚洲中文av在线| 亚洲欧美日韩另类电影网站| 十分钟在线观看高清视频www| www.999成人在线观看| 欧美国产精品va在线观看不卡| 日韩伦理黄色片| 亚洲人成网站在线观看播放| 一本久久精品| 观看av在线不卡| 午夜福利一区二区在线看| 欧美乱码精品一区二区三区| 亚洲熟女精品中文字幕| 国产主播在线观看一区二区 | 色精品久久人妻99蜜桃| 十八禁高潮呻吟视频| 青青草视频在线视频观看| 国产成人精品久久二区二区91| 伊人久久大香线蕉亚洲五| 在线观看国产h片| 亚洲七黄色美女视频| 好男人电影高清在线观看| 在线观看国产h片| 大话2 男鬼变身卡| 嫩草影视91久久| 亚洲国产精品一区三区| 国产成人精品久久久久久| 男人舔女人的私密视频| 国产片内射在线| 免费女性裸体啪啪无遮挡网站| 亚洲国产成人一精品久久久| 国产人伦9x9x在线观看| 精品免费久久久久久久清纯 | 亚洲欧洲日产国产| 叶爱在线成人免费视频播放| 亚洲国产欧美日韩在线播放| 国产精品欧美亚洲77777| 最近中文字幕2019免费版| 国产成人欧美| www.熟女人妻精品国产| 黄频高清免费视频| 国产爽快片一区二区三区| 国产高清videossex| 欧美xxⅹ黑人| 国产爽快片一区二区三区| 国产一区二区 视频在线| 国产精品久久久久久人妻精品电影 | 国产99久久九九免费精品|