Question:

The state graph shows the action cost along the edges and the heuristic function \( h \) associated with each state. Suppose the A algorithm is applied on this state graph using a priority queue to store the frontier. In what sequence are the nodes expanded?

Show Hint

When using the A algorithm, always prioritize nodes with the lowest f-cost. The f-cost is calculated as the sum of the action cost to reach a node and its heuristic value. Use a priority queue to efficiently select the node with the lowest f-cost.
Updated On: Apr 4, 2025
  • S, A, E, C, B, D, G
  • S, E, A, C, B, D, G
  • S, A, E, B, C, D, G
  • S, A, B, E, C, D, G
Hide Solution
collegedunia
Verified By Collegedunia

The Correct Option is C

Solution and Explanation

We are given the state graph and the heuristic values \( h \). The A* algorithm expands nodes based on the f-cost, where:

\[ f(n) = g(n) + h(n) \] where \( g(n) \) is the cost to reach node \( n \) and \( h(n) \) is the heuristic value.

The f-cost calculations are:
\( f(S) = 2 \), \( f(A) = 4 \), \( f(E) = 10 \), \( f(B) = 6 \), \( f(C) = 10 \), \( f(D) = 9 \), \( f(G) = 10 \).

The order of expansion of nodes is based on their f-cost values. Thus, the nodes are expanded in the following order:
\( S, A, E, B, C, D, G \)

Thus, the correct answer is Option (C).
Was this answer helpful?
0
0

Top Questions on Searching, Sorting and Hashing

Questions Asked in GATE DA exam

View More Questions