Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我打算做一个Bubblet 游戏,因为我只是喜欢这个游戏。
什么可以用作启发式?我会把它做成 30x30 或更大,我不知道如何让电脑有效地玩游戏......
你能提出一些想法吗?谢谢
我会尝试动态编程和并行编程的组合:
对于每个点,保持一个分数,计算它自己和它之前的 4 个连接的邻居的分数(向上和向左)(由于动态规划已经可用)。
这可以在对角线上并行完成,从而提高性能。