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

  Calculate target heart rate during fitness training

CIS115-INTRODUCTION TO PROGRAMMING AND LOGIC-Write a program to calculate target heart rate during fitness training. This program has two functions.

  Prepare a program to output a random number

Write a program to output a random number, which is divisible by 5 and 7, between 0 and 10 inclusive using random module and list comprehension.

  Write a program which requests that requests a product name

Write a program which requests that requests a product name and a stock number. Store that data in a List or a Dictionary

  Create a new pandas dataframe of data that will be used

Provide a count of the number of records. Create a new pandas DataFrame of data that will be used for target maketing and write it out to a headered csv file.

  Calculate the distance an object falls over time

You need a function that calculates the distance an object falls over time. Prompts the user to enter the falling time in seconds.

  Need an expert to guide in finishing the programs

I have built code for a soduko board. The progression has been done over 3 .py files. I'm having difficulty finishing several aspects, and need an expert to guide in finishing the programs.

  You need to do the run test page only

configure page will pass me the JSON object - what data is been flagged - What kind of test and object - how to find out bad data if the configure page is not

  Detailed docstring specification for the function

We will also give you a detailed docstring specification for the function. You should copy-and-paste the specification into the function body, indented

  Practical laboratory exercises to automate business process

ITECH1100 Understanding the Digital Revolution - Story Resurrection - you will use skills acquired through practical laboratory exercises

  Write a simple address book that lets save contact details

159.171 - Computational Thinking and Software Development Assignment. MASSEY UNIVERSITY. Write a simple address book that lets save contact details

  Apply struct for reading packet data

Topic: Python 3 - PCAP file analysis - Apply struct for reading packet's data, extract and hash the ICMP data portion of the packet

  Write a recursive function that takes in a list

For this part of the homework, you will write a recursive function that takes in a list of positive integers as a parameter, and prints out the maximum value in that list. Your recursive function should be called maxInt().

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