Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Connections between airports can be modelled by a graph. The nodes represent airports, and the edges represent nonstop flight routes between the airports. Two nodes
Connections between airports can be modelled by a graph. The nodes represent airports, and the edges represent nonstop flight routes between the airports. Two nodes are connected by a edge if there is a nonstop flight between the two airports; for simplicity, we assume that if there is a nonstop flight from one airport to another, there is a returning nonstop flight so that the graph is undirected. The matrix nonstop_flights represents a network of 100 U.S. airports as described above. We ask you to determine the number of distinct routes to fly from O'Hare Airport (ORD) to Los Angeles International Airport (LAX) with at most one layover (that is, either nonstop or with exactly one layover). 1) Compute a 100100-matrix A such that the entry in the i-th row and the j-th column of A is the number of walks from node j to node i of length at most 2. Store this matrix as atmost_1_layover. 2) Assuming that ORD is airport \# 2 (the 3rd row/column of the adjacency matrix when one-indexing) and LAX is airport \# 38 (the 39rd row/column of the adjacency matrix when one-indexing). Compute the number of distict routes to fly from ORD to LAX with at most one layover. Save this as num_options. The setup code gives the following variables: Your code snippet should define the following variables: user_code.py Restore original file
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started