摘要:
原题链接:http://poj.org/problem?id=2251 在三维空间内做BFS。View Code #include <stdio.h>#include <string.h>#include <queue>using namespace std;int L, R, C, ans, sx, sy, sz, ex, ey, ez;char maze[101][101][101];bool vis[101][101][101];int dr[6][3] = {{0, 0, 1}, {0, 0, -1}, {1, 0, 0}, {-1, 0, 0}, 阅读全文
摘要:
原题链接:http://poj.org/problem?id=1088 动态规划,记忆化搜索。View Code #include <cstdio>#include <cstring>#define MAXN 105#define max(x,y) x > y ? x : yint a[MAXN][MAXN], dp[MAXN][MAXN];int dr[4][2] = {{0, 1}, {0, -1}, {-1, 0}, {1, 0}};int R, C;int DP(int r, int c){ if(dp[r][c] != -1) { return dp[. 阅读全文