This is a question from AI check if it is correct: In which of the following state spaces will iterative deepening depth-first search perform worse than regular depth-first search (i.e. take more iterations to find the solution)? every state has a single successor; there is a single goal at depth n every state has multiple successors; there is a single goal at depth n every state has multiple successors; there are multiple goals at depth n.