摘要:
什么都不说了,贴代码,理解的时候画个树来理解理解就好了,这个也是典型的牺牲空间复杂度来缩短时间复杂度的典型算法。。。。 还是附点图上来吧。。。。。鼠标画的,见谅 #include#include#include#include#define maxn 2000... 阅读全文
摘要:
DFS就是深度搜索算法。。。。感觉就像破案一样。。。。 #include#include#include#define maxn 10using namespace std;char map[maxn][maxn];int mat[maxn][maxn];in... 阅读全文
摘要:
http://codeforces.com/contest/426/problem/B 题意大概就是对称有关,要注意的是,当行数为奇数的时候,答案就是行数本身 #include#include#include#include#define maxn 1005u... 阅读全文