Hello, Can you recommend some heuristic-related problems?
Especially problems for the A* algorithm.
I see the problems in the [competitive programming 3] book, so I need other problems.
Also, I don't need standard problems that appear in any text about heuristics like n-puzzle and Hanoi tower.
Auto comment: topic has been updated by Kais_Hasan (previous revision, new revision, compare).
https://mirror.codeforces.com/contest/630
A*
Which problems are related to heuristics in your first link?
For the second link, HackerRank has two problems only and they are very standard.
How about the Sokuban problem
Given a maze, you are the player and you need to move $$$N$$$-boxs to their targets.
Advanced mode: Given $$$K$$$ players, and they cant pass each other. Do the same question above
Other problem: Find hardest maze of size $$$N \times M$$$ that need maximum cost to push all $$$K$$$ boxs to their targets.
You can also play the game to test if you are correct ^^