插头dp
文章平均质量分 80
yrleep
大学毕业不久,ios游戏自由开发者。
展开
-
poj 3133 Manhattan Wiring 插头dp
插头dp 这个题目还是比较直接的,就是转移比较麻烦,要先考虑格子的三种情况,然后分别讨论转移情况。不过我认为用启发式搜索应该是可以更加直接有效的过这题。有时间再试试启发式。#include #include #include using namespace std;const int maxn=10,maxm=2e4+9;int a[maxn][maxn];int n,m;原创 2013-09-07 00:22:02 · 1165 阅读 · 0 评论 -
poj 1739 Tony's Tour 插头dp
第一道插头dp,还是非常艰难的,做法的话cdq论文中已经讲得很清楚了,用的是最小表示法,但是这个题目因为障碍的存在导致细节处理上面更加麻烦。#include #include #include using namespace std;const int maxn=9,maxm=3e3+9;;char a[maxn][maxn];bool first[9][9];int n,m;i原创 2013-09-06 12:19:07 · 945 阅读 · 0 评论