List of integers path that represents a proposed path

Assignment Help Python Programming
Reference no: EM132382440

Question

Your good friend, Johnny, who also lives in Manchester, is turning 18 in a few months. To celebrate the occassion you would like to give Johnny a birthday card that has been signed by all of his friends.

The only problem is Johnny is incredibly well travelled, and has friends all through the country and the world. Figure out the best way to get the card to all of these friends before Johnny's birthday, you have turned to graph theory. Every city and town in which a friend of Johnny lives has been allocated a number between 1 and the number of friends (minus one), and Manchester has been allocated the number 0. You have recorded postage times between locations as edge weights.

You have found that all pairs of locations are such that the postage time from A to B is the same as the postage time from B to A, so your graph is undirected. You have also found that there is a postage connection between every pair of locations, so your graph is connected and complete. You have implemented this graph as an adjacency matrix, where each cell represents the weight of an edge.

All postage times are given in integers, representing how many days the card would take to travel between the two locations. (I.e. an edge weight of 2 between A and B means it would take two days to get the card between location A and location B.)

Part A)

Create function post_time(graph, path) that returns how long it will take Johnny's card to travel the given path using divide and conquer

Input: a nested list graph that represents a graph as an adjacency matrix, that models the postage routes and times between Johnny's friends; and a

List of integers path that represents a proposed path in the graph. You may assume the given path exists in the graph.

Output: an integer that is the number of days it would take Johnny's card to travel the given path.

Examples

postage1 = [ [0,1,1,3,2], [1,0,4,5,1], [1,4,0,1,3], [3,5,1,0,1], [2,1,3,1,0] ]

postage2 = [ [0,2,2,1,2], [2,0,1,1,2], [2,1,0,1,4], [1,1,1,0,1], [2,2,4,1,0] ]

a) Calling post_time(postage1, [0,1,4,3,2,0]) returns 5.

b) Calling post_time(postage1, [0,3,1,2,3]) returns 13.

Part B)

Create function post route(graph) that uses a greedy approach to ?nd a fast (but not necessarily the fastest) route by which to send the card.

The metric for the greedy approach is: send the card to the location that takes the shortest time to get to that the card has not yet been visited; or, if all locations

have been visited, send the card back to Manchester. If there are multiple locations to chose from, all with the same distance, choose the location that has been allocated the smaller number.

Input: a nested list graph that represents a graph as an adjacency matrix, that models the postage routes and times between Johnny's friends.

Output: a list of integers, where each integer is a location, ordered such that visiting each location in the order given creates a cycle that begins and ends in Manchester. The only number that can appear twice is 0.

Examples

a) Calling post route(postage1) returns [0,1,4,3,2,0].

b) Calling post route(postage2) returns [0,3,1,2,4,0].

Reference no: EM132382440

Questions Cloud

Create a program that adds the first and third rows : Create a program that adds the first and third rows of the following data, then prints the result. Use sample- data to create a scatter plot with error bars.
Budding performance principles : Develop an instruction manual that could walk a lay person through the process of checking for potential sources of indoor air problems.
Create a program in python eclipse that asks the user : Create a program in Python Eclipse that asks the user for an integer that represent the date in the MMDDYYYY format and then displays the date.
Use a for loop to display each element in a separate line : Use the range function to generate this sequence of integers: 5, 9, 13, 17 and 21. Save the numbers in a list. Display the list.
List of integers path that represents a proposed path : Create function post_time that returns how long it will take Johnny's card to travel the given path using divide and conquer.
PROJ6009 Business Process Management and Systems Assignment : PROJ6009 Business Process Management and Systems Assignment help and solution, Torrens University Australia, Assessment help - analyse the role of management
Expected value and standard deviation of rate of return : What is the expected value and standard deviation of the rate of return of your client's portfolio?
Create the blog and relevant pages : For this Project - You just need to create the blog and relevant pages. You don't have to write posts. What needs to be done is mentioned in detail here
Prompts the user to enter a series of strings : Prompts the user to enter a series of strings, but with each string containing a small integer. Use a while loop and stop the loop when the user enters a zero.

Reviews

Write a Review

Python Programming Questions & Answers

  Write a python program to implement the diff command

Without using the system() function to call any bash commands, write a python program that will implement a simple version of the diff command.

  Write a program for checking a circle

Write a program for checking a circle program must either print "is a circle: YES" or "is a circle: NO", appropriately.

  Prepare a python program

Prepare a Python program which evaluates how many stuck numbers there are in a range of integers. The range will be input as two command-line arguments.

  Python atm program to enter account number

Write a simple Python ATM program. Ask user to enter their account number, and print their initail balance. (Just make one up). Ask them if they wish to make deposit or withdrawal.

  Python function to calculate two roots

Write a Python function main() to calculate two roots. You must input a,b and c from keyboard, and then print two roots. Suppose the discriminant D= b2-4ac is positive.

  Design program that asks user to enter amount in python

IN Python Design a program that asks the user to enter the amount that he or she has budget in a month. A loop should then prompt the user to enter his or her expenses for the month.

  Write python program which imports three dictionaries

Write a Python program called hours.py which imports three dictionaries, and uses the data in them to calculate how many hours each person has spent in the lab.

  Write python program to create factors of numbers

Write down a python program which takes two numbers and creates the factors of both numbers and displays the greatest common factor.

  Email spam filter

Analyze the emails and predict whether the mail is a spam or not a spam - Create a training file and copy the text of several mails and spams in to it And create a test set identical to the training set but with different examples.

  Improve the readability and structural design of the code

Improve the readability and structural design of the code by improving the function names, variables, and loops, as well as whitespace. Move functions close to related functions or blocks of code related to your organised code.

  Create a simple and responsive gui

Please use primarily PHP or Python to solve the exercise and create a simple and responsive GUI, using HTML, CSS and JavaScript.Do not use a database.

  The program is to print the time

The program is to print the time in seconds that the iterative version takes, the time in seconds that the recursive version takes, and the difference between the times.

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd