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.
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:
Draw the complete State transition tree using Greedy Best First Search Algorithm, and tabular it as openList, ClosedList, Goal Test, Successors, visited node
Represent and initialize the node and graph in python using dictionary or array based grid
Question doesnt come up with heuristic, So design a heuristic like Manhattan based or Euclidean and explain
Write python code along with data structure for heuristic function
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