Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Provide java code of this question A city has N Tram stations numbered from 1 to N that are connected to one another and form

Provide java code of this question A city has N Tram stations numbered from 1 to N that are connected to one another and form a circle. You are given an array ticket_cost where ticket_cost[i] is the cost of a ticket between the stops number i and (i +1)% N. The Tram can travel in both directions i.e. clockwise and anti-clockwise.
Return the minimum cost to travel between the given start and finish station.
You are given an integer N where N represents the total number of the tram stations, an integer start which represents the start station, and an integer finish which represents the finish station. You are given an array of positive integers ticket_cost where ticket_cost[i] represents the ticket cost between the station number i and (i +1)% N.
Task
Determine the minimum cost to travel between the given start and finish station.
Example
Assumptions
N =4
start =1
finish =4
ticket_cost =[1,2,2,4]
Approach
path1->1------1----->2-------2------>3-------2------>4.=>1+2+2=>5
path2->1------4------>4.=>4
Path2 will give the minimum cost. Therefore return 4.
Function description
Complete the Solve() function provided in the editor below that takes the following arguments and finds the minimum cost to travel between the given start and finish station:
N: Represents the total number of tram stations
start: Represents the start station
finish: Represents the finish station
ticket_cost: Represents ticket_cost[i] denoting the ticket-cost between the station number i and (i +1)%N
Input format
The first line contains an integer N denoting the total number of tram stations.
The second line contains an integer start denoting the start station.
The third line contains an integer finish denoting the finish station.
The fourth line contains an N space-separated integer array ticket_cost, ticket_cost[i] represents the ticket-cost between the station number i and (i +1)%N.
Output format
Return the minimum cost to travel between the given start and finish station.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Oracle Database 11g SQL

Authors: Jason Price

1st Edition

0071498508, 978-0071498500

More Books

Students also viewed these Databases questions

Question

Explain the function and purpose of the Job Level Table.

Answered: 1 week ago