Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Problem Statement Assume that you are given the responsibility to supply food, water, medicines and other amenities to the flooded areas in the city of
Problem Statement
Assume that you are given the responsibility to supply food, water, medicines and other amenities to the flooded areas in the city of Chennai. It is your responsibility to supply the needs to all the areas affected by flood where people are suffering. You are provided with a map of the city with flooded landmarks marked vertices You are provided with an autonomous batteryoperated micro aquatic boat that detects the flooded areas and responds to people who wave to it for help. The autonomous batteryoperated micro aquatic boat works on a battery and hence it has to take a path such that all the roads edges in the graph are covered, but no road is repeated more than once. After getting the details, the boat agent reports to you, the taken path and the locations where people are requesting for help.
The problem here is to find the shortest route that travels through all the lanes in the area. The places can be visited more than once. The shortest path includes all the roads travelled only once. Help your autonomous batteryoperated micro aquatic boat in finding such a path given a starting point and the map.
Here the area map is represented as a graph. The algorithm takes the starting point and the graph as the input and produces the shortest path covering all the edges only once.
From diagram, representation of different places using some short forms and graph using dictionary of them as follows:
pu: Purasawalkam
pe: Perumbakkam
v: Velachery
g: Guindy
t: Tambaram
n: Nungambakkam
graph
pu: pet
pe: putvg
v: gpe
g: petnv
n: gt
t: ngpepu
nodecoordinates
pu:
pe:
t:
v:
g:
n:
For the heuristic, Consider the Manhattan distance heuristic. This heuristic calculates the distance between two points on a gridlike path by summing the absolute differences of their coordinates. In our case, each vertex represents a location in a gridlike environment, and the distance between them can be approximated by the Manhattan distance.
def manhattandistancepoint point:
x y nodecoordinatespoint
x y nodecoordinatespoint
return absx x absy y
def generateinitialpopulationgraph populationsize:
initialpopulation
for in rangepopulationsize:
path listgraphkeys
random.shufflepath
initialpopulation.appendpath
return initialpopulation
def calculatefitnesspath:
totaldistance summanhattandistancepathi pathi for i in rangelenpath
return totaldistance if totaldistance else floatinf
Goal Test: The goal test is satisfied when the agent reaches the starting point after visiting all nodes in the graph, covering each edge only once.
Answer the Following:
Write working python code using Genetic Algorithm with following steps
a Population Initialisation,
b Fitness Selection using roulettes wheel,
c Cross over by single split or two split
d Mutatation
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