假设我们有一个迷宫游戏,在 20*20 网格迷宫中有 1 只老鼠和 4 只猫。假设迷宫中的每个智能体都可以移动 N、E、S、W。对于这个巨大的博弈树中每个节点的子节点数量,您最好的猜测是什么?
这是我最好的猜测,但我不确定,有什么想法吗?
4 possible mouse moves *
(4 directions) * (4! possible cat1 moves) *
(4 directions) * (4! possible cat2 moves) *
(4 directions) * (4! possible cat3 moves) *
(4 directions) * (4! possible cat4 moves)
= 339738624 children in 1 node