【HDOJ】1983 Kaitou Kid - The Phantom Thief (2)
不仅仅是DFS,还需要考虑可以走到终点。同时,需要进行预处理。至多封闭点数为起点和终点的非墙壁点的最小值。
#include <iostream>
#include <cstdio>
#include <cstring>
#include <cstdlib>
#include <queue>
using namespace std; typedef struct node_st {
int x, y, t, flg;
node_st() {}
node_st(int xx, int yy, int tt, int fflg) {
x=xx; y=yy; t=tt; flg=fflg;
}
} node_st; char map[][];
char visit[][][];
int direct[][] = {{-,},{,},{,-},{,}};
int n, m, time, fmin;
int begx, begy, endx, endy; bool check(int x, int y) {
if (x< || x>=n || y< || y>= m)
return false;
return true;
} bool bfs() {
queue<node_st> que;
int x, y, t, flg;
int i;
node_st node; memset(visit, , sizeof(visit));
que.push(node_st(begx, begy, , ));
visit[begx][begy][] = ; while ( !que.empty() ) {
node = que.front();
que.pop();
t = node.t;
if (t == time)
break;
for (i=; i<; ++i) {
x = node.x + direct[i][];
y = node.y + direct[i][];
flg = node.flg;
if ( !check(x, y) )
continue;
if (map[x][y] != '#') {
if (map[x][y] == 'E' && flg==)
return true;
if (map[x][y] == 'J')
flg = ;
if (t<time && !visit[x][y][flg]) {
visit[x][y][flg] = ;
que.push(node_st(x, y, t+, flg));
}
}
}
} return false;
} void printmap() {
for (int i=; i<n; ++i)
printf("\t%s\n", map[i]);
} int dfs(int t, int cur) {
int flg = ;
char ch; if (t >= fmin)
return ; for (int i=; i<n; ++i) {
for (int j=; j<m; ++j) {
if (map[i][j]=='.' || map[i][j] == 'J') {
ch = map[i][j];
map[i][j] = '#';
if (cur == t) {
//printmap();
if ( !bfs() ) {
fmin = (t<fmin) ? t:fmin;
return ;
}
}
if (cur < t)
flg = dfs(t, cur+);
map[i][j] = ch;
}
if (flg)
return ;
}
} return ;
} int pre() {
int i, x, y, tmp1, tmp2; tmp1 = ;
for (i=; i<; ++i) {
x = begx + direct[i][];
y = begy + direct[i][];
if ( check(x, y) && (map[x][y]=='.'||map[x][y]=='J'))
tmp1++;
} tmp2 = ;
for (i=; i<; ++i) {
x = endx + direct[i][];
y = endy + direct[i][];
if ( check(x, y) && (map[x][y]=='.'||map[x][y]=='J'))
tmp2++;
} return tmp1<tmp2 ? tmp1 : tmp2;
} int main() {
int case_n;
int i, j; scanf("%d", &case_n); while (case_n--) {
scanf("%d %d %d%*c", &n, &m, &time);
for (i=; i<n; ++i) {
scanf("%s", map[i]);
for (j=; j<m; ++j) {
if (map[i][j] == 'S') {
begx = i;
begy = j;
}
if (map[i][j] == 'E') {
endx = i;
endy = j;
}
}
}
if ( !bfs() ) {
printf("0\n");
continue;
}
fmin = pre();
//printf("pre:%d\n", fmin);
dfs(,);
//printf("1:%d\n", fmin);
dfs(,);
//printf("2:%d\n", fmin);
dfs(,);
printf("%d\n", fmin);
} return ;
}
【HDOJ】1983 Kaitou Kid - The Phantom Thief (2)的更多相关文章
- HDOJ/HDU 1982 Kaitou Kid - The Phantom Thief (1)(字符串处理)
Problem Description Do you know Kaitou Kid? In the legend, Kaitou Kid is a master of disguise, and c ...
- HDU 1983 Kaitou Kid - The Phantom Thief (2)
神题,搜索太差,来自网络的题解与程序 思路: 封锁出口或者入口周围的格子. 最多需要4个封锁点. 所以我们可以采取这样的策略: 1.寻找一条盗贼的可行路线,如果没有,返回0. 2.计算封锁出口和入口四 ...
- HDU——1982Kaitou Kid - The Phantom Thief (1)(坑爹string题)
Kaitou Kid - The Phantom Thief (1) Time Limit: 3000/1000 MS (Java/Others) Memory Limit: 32768/327 ...
- 【HDOJ】4729 An Easy Problem for Elfness
其实是求树上的路径间的数据第K大的题目.果断主席树 + LCA.初始流量是这条路径上的最小值.若a<=b,显然直接为s->t建立pipe可以使流量最优:否则,对[0, 10**4]二分得到 ...
- 【HDOJ】【3506】Monkey Party
DP/四边形不等式 裸题环形石子合并…… 拆环为链即可 //HDOJ 3506 #include<cmath> #include<vector> #include<cst ...
- 【HDOJ】【3516】Tree Construction
DP/四边形不等式 这题跟石子合并有点像…… dp[i][j]为将第 i 个点开始的 j 个点合并的最小代价. 易知有 dp[i][j]=min{dp[i][j] , dp[i][k-i+1]+dp[ ...
- 【HDOJ】【3480】Division
DP/四边形不等式 要求将一个可重集S分成M个子集,求子集的极差的平方和最小是多少…… 首先我们先将这N个数排序,容易想到每个自己都对应着这个有序数组中的一段……而不会是互相穿插着= =因为交换一下明 ...
- 【HDOJ】【2829】Lawrence
DP/四边形不等式 做过POJ 1739 邮局那道题后就很容易写出动规方程: dp[i][j]=min{dp[i-1][k]+w[k+1][j]}(表示前 j 个点分成 i 块的最小代价) $w(l, ...
- 【HDOJ】【3415】Max Sum of Max-K-sub-sequence
DP/单调队列优化 呃……环形链求最大k子段和. 首先拆环为链求前缀和…… 然后单调队列吧<_<,裸题没啥好说的…… WA:为毛手写队列就会挂,必须用STL的deque?(写挂自己弱……s ...
随机推荐
- unity3d最新面试题与参考答案汇总
1.在类的构造函数前加上static会报什么错?为什么? 构造函数格式为 public+类名,如果加上static会报错(静态构造函数不能有访问修饰符)原因:静态构造函数不允许访问修饰符,也不接受任何 ...
- IrisSkin4控件使用方法
参考如下: 1. 将IrisSkin4.dll动态文件导入当前项目引用中.具体操作为:解决方案资源管理器->当前项目->引用->右键->添加引用,找到IrisSkin4.dll ...
- 归并排序算法(C#实现)
归并排序(Merge Sort)是利用"归并"技术来进行排序.归并是指将若干个已排序的子文件合并成一个有序的文件.归并排序有两种方式:1): 自底向上的方法 2):自顶向下的方法 ...
- CocoaPods安装过程中的大坑
一.CocoaPods是什么? CocoaPods是一个用Ruby写的.负责管理iOS项目中第三方开源库的工具,CocoaPods能让我们集中的.统一管理第三方开源库,为我们节省设置和更新第三方开源库 ...
- iOS的Mantle实战分析
公司项目之前的model层代码是我使用JSON工具直接生成Objective-C代码的,当时还是觉得相当省事的,毕竟我经历过无model层的NSDictionary“黑暗”时期.但是随着项目的推进,问 ...
- LA 3708 Graveyard(推理 参考系 中位数)
Graveyard Programming contests became so popular in the year 2397 that the governor of New Earck -- ...
- I/O端口与I/O内存
端口的概念:设备通过系统总线上的接口与CPU相连,接口电路中含有多种寄存器,CPU向设备读写数据实际上是向接口上的寄存器读写数据,这些寄存器称为I/O端口.一个接口通常包含控制端口,数据端口,状态端口 ...
- css3动画使用技巧之—JQ配合css3实现轮播之animation-delay应用
<!DOCTYPE html> <html> <head> <title>css3动画使用技巧之—JQ配合css3实现轮播之animation-dela ...
- 苹果ios、ipad加密视频播放器使用教程
操作流程 温馨提示 播放时,请务必保证播放设备联网(原因:用户名权限验证需要网络,播放后10秒即可关闭网络) a) 请在苹果商店下载并安装app播放器:DrmPlayer b) 选择已 ...
- 文字以及div水平垂直居中
文字以及div水平垂直居中.md <div class=”content”> <div class=”mydiv”> huangyingnin! </div>< ...