【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 ...
随机推荐
- 错误编码 = 10022 错误消息 = SDK 组件 Qupaisdk 启动出错,错误消息为 [Qupaisdk], the android stack error message is Fail to start the plugin, which is caused by No implem
so没有load到.几个可能,1.缺少so--在群共享下载拷贝到armeabi-v7a 2.so没有打入apk--检查打出来的apk.解压打开看下libs下面有没有so. 3.abi平台问题.检查平 ...
- php session_id()函数介绍及代码实例
session_id()功能: 获取设置当前回话ID. 函数说明: string session_id ([ string $id ] ) 参数: 如果指定了参数$id,那么函数会替换当前的回话id. ...
- SQL的update from 理解
学习了sql的语句都有快3年,工作上使用都一年半的,最近突然想起update from语句,感觉好像很模糊,虽然语法上使用一直正确,一直都是这样使用,但是就好像不是很明白里面的深处意思. 今天特意测试 ...
- JavaScript使用技巧
使用!!操作符转换布尔值 有时候我们需要对一个变量查检其是否存在或者检查值是否有一个有效值,如果存在就返回true值.为了做这样的验证,我们可以使用!!操作符来实现是非常的方便与简单.对于变量可以使用 ...
- Mybatis-generator使用和扩展
Mybatis-generator使用和扩展 mybatis-generator使用 pom.xml配置 <plugin> <groupId>org.mybatis.gener ...
- Flash Professional CS6 安装zxp插件
说明 头两天因工作原因需要使用DragonBones,他的工作方式是的Flash Professional CS5.5以上的环境. DragonBones提供的是一个文件名为:xzp的文件,在Wind ...
- linux ptheard 生产者消费者
; { { printf( pthread_mutex_lock(&mutex); != g_iBufSiz ...
- IE8+等兼容、360调用webkit内核小记
首先是处理IE8.9等的兼容问题,注意以下几点: 1,尽可能严格要求自己使用w3c推荐的方式编写html/css 2,在html页面顶部添加<!DOCHTML html>,不清楚请查看参考 ...
- SQL Join(连接查询)
1.连接查询分为: inner join(自然连接,自连接) Left join(左连接)/Left outer join(左外连接):效果一样 Right join(右连接)/Right outer ...
- jbpm4.4 spring整合
jBPM-4.4与Spring集成配置比较容易,这里我使用的是Spring-2.5.6,数据库连接池使用C3P0,将相关的两个jar文件加入到CLASSPATH中. jBPM-4.4与Spring集成 ...