P1242 新汉诺塔(搜索+模拟退火)
摘要:
题目链接:传送门 题目大意: 汉诺塔,给定n个盘子(n <= 45),起始状态和结束状态,求最小的步数以及路径。 思路: 考虑用dfs贪心地将剩余最大盘归位。 #include<bits/stdc++.h> using namespace std; const int MAX_N = 50; con 阅读全文
posted @ 2018-10-15 23:21 Danceped 阅读(911) 评论(0) 推荐(0) 编辑