【BZOJ 3049】【USACO2013 Jan】Island Travels BFS+状压DP
这是今天下午的互测题,只得了60多分
分析一下错因:
$dis[i][j]$只记录了相邻的两个岛屿之间的距离,我一开始以为可以,后来$charge$提醒我有可能会出现来回走的情况,而状压转移就一次,无法实现来回走的情况,所以加了一个类似$floyed算法$的三重循环来更新每个点的距离,然后状态转移就可以了,枚举起点和终点,最后统计答案
#include<cstdio>
#include<cstring>
#include<algorithm>
using namespace std;
char c[53][53];
int n, m, dis[18][18], belong[53][53], f[40000][18], cnt = 0, qx[2500000], qy[2500000];
int far[2500000], head, tail;
bool vis[53][53];
inline void _(int x, int y) {
belong[x][y] = cnt;
vis[x][y] = 1;
if (x > 1 && c[x - 1][y] == 'X' && !vis[x - 1][y])
_(x - 1, y);
if (y > 1 && c[x][y - 1] == 'X' && !vis[x][y - 1])
_(x, y - 1);
if (x < n && c[x + 1][y] == 'X' && !vis[x + 1][y])
_(x + 1, y);
if (y < m && c[x][y + 1] == 'X' && !vis[x][y + 1])
_(x, y + 1);
}
inline void __(int x) {
int nowx, nowy;
while (head != tail) {
++head; if ( head >= 2500000) head %= 2500000;
nowx = qx[head];
nowy = qy[head];
if (nowx > 1 && !vis[nowx - 1][nowy] && c[nowx - 1][nowy] != '.') {
if (c[nowx - 1][nowy] == 'S') {
++tail; if (tail >= 2500000) tail %= 2500000;
qx[tail] = nowx - 1;
qy[tail] = nowy;
far[tail] = far[head] + 1;
vis[nowx - 1][nowy] = 1;
} else {
dis[x][belong[nowx - 1][nowy]] = min( dis[x][belong[nowx - 1][nowy]], far[head]);
}
}
if (nowy > 1 && !vis[nowx][nowy - 1] && c[nowx][nowy - 1] != '.') {
if (c[nowx][nowy - 1] == 'S') {
++tail; if (tail >= 2500000) tail %= 2500000;
qx[tail] = nowx;
qy[tail] = nowy - 1;
far[tail] = far[head] + 1;
vis[nowx][nowy - 1] = 1;
} else {
dis[x][belong[nowx][nowy - 1]] = min( dis[x][belong[nowx][nowy - 1]], far[head]);
}
}
if (nowx < n && !vis[nowx + 1][nowy] && c[nowx + 1][nowy] != '.') {
if (c[nowx + 1][nowy] == 'S') {
++tail; if (tail >= 2500000) tail %= 2500000;
qx[tail] = nowx + 1;
qy[tail] = nowy;
far[tail] = far[head] + 1;
vis[nowx + 1][nowy] = 1;
} else {
dis[x][belong[nowx + 1][nowy]] = min( dis[x][belong[nowx + 1][nowy]], far[head]);
}
}
if (nowy < m && !vis[nowx][nowy + 1] && c[nowx][nowy + 1] != '.') {
if (c[nowx][nowy + 1] == 'S') {
++tail; if (tail >= 2500000) tail %= 2500000;
qx[tail] = nowx;
qy[tail] = nowy + 1;
far[tail] = far[head] + 1;
vis[nowx][nowy + 1] = 1;
} else {
dis[x][belong[nowx][nowy + 1]] = min( dis[x][belong[nowx][nowy + 1]], far[head]);
}
}
}
}
int main() {
scanf("%d%d\n", &n, &m);
for(int i = 1; i <= n; ++i)
for(int j = 1; j <= m; ++j) {
c[i][j] = getchar();
while (c[i][j] != 'X' && c[i][j] != '.' && c[i][j] != 'S')
c[i][j] = getchar();
}
memset(vis, 0, sizeof(vis));
for(int i = 1; i <= n; ++i)
for(int j = 1; j <= m; ++j)
if (!vis[i][j] && c[i][j] == 'X') {
++cnt;
_(i, j);
}
memset(dis, 1, sizeof(dis));
for(int i = 1; i <= cnt; ++i) {
head = 0;
tail = 0;
memset(vis, 0, sizeof(vis));
for(int k = 1; k <= n; ++k)
for(int l = 1; l <= m; ++l)
if (belong[k][l] == i) {
vis[k][l] = 1;
++tail; if ( tail >= 2500000) tail %= 2500000;
qx[tail] = k;
qy[tail] = l;
far[tail] = 0;
}
__(i);
}
for(int k = 1; k <= cnt; ++k)
for(int i = 1; i <= cnt; ++i)
for(int j = 1; j <= cnt; ++j)
if (dis[i][k] + dis[k][j] < dis[i][j])
dis[i][j] = dis[i][k] + dis[k][j];
memset(f, 1, sizeof(f));
int ans = 500000, tot = (1 << cnt) - 1;
for(int i = 1; i <= cnt; ++i)
f[1 << ( i - 1)][i] = 0;
for(int i = 1; i <= tot; ++i) {
for(int j = 1; 1 << (j - 1) <= i; ++j) {
if (1 << (j - 1) & i) {
for(int k = 1; k <= cnt; ++k)
if (k != j && (1 << (k - 1) & i))
f[i][j] = min(f[i][j], f[i ^ (1 << (j - 1))][k] + dis[k][j]);
}
}
}
for(int i = 1; i <= cnt; ++i)
ans = min(ans, f[tot][i]);
printf("%d\n",ans);
return 0;
}
以后思维得更严谨才行
我的BFS写的就是这么丑,这又怎样?
【BZOJ 3049】【USACO2013 Jan】Island Travels BFS+状压DP的更多相关文章
- BZOJ_3049_[Usaco2013 Jan]Island Travels _状压DP+BFS
BZOJ_3049_[Usaco2013 Jan]Island Travels _状压DP+BFS Description Farmer John has taken the cows to a va ...
- hdu 4856 Tunnels (bfs + 状压dp)
题目链接 The input contains mutiple testcases. Please process till EOF.For each testcase, the first line ...
- HDU-4856 Tunnels (BFS+状压DP)
Problem Description Bob is travelling in Xi’an. He finds many secret tunnels beneath the city. In hi ...
- 孤岛营救问题(BFS+状压DP)
孤岛营救问题 https://www.luogu.org/problemnew/show/P4011 用状压DP标记拿到钥匙的数量 #include<iostream> #include& ...
- QDUOJ 来自xjy的签到题(bfs+状压dp)
来自xjy的签到题 Description 爱丽丝冒险来到了红皇后一个n*n大小的花园,每个格子由'.'或'#'表示,'.'表示爱丽丝可以到达这个格子,‘#’表示爱丽丝不能到达这个格子,爱丽丝每1 ...
- HDU-3681-Prison Break(BFS+状压DP+二分)
Problem Description Rompire is a robot kingdom and a lot of robots live there peacefully. But one da ...
- bzoj 1879 [Sdoi2009]Bill的挑战(状压DP)
Description Input 本题包含多组数据. 第一行:一个整数T,表示数据的个数. 对于每组数据: 第一行:两个整数,N和K(含义如题目表述). 接下来N行:每行一个字符串. Output ...
- bzoj 1226 [SDOI2009]学校食堂Dining(状压DP)
Description 小F 的学校在城市的一个偏僻角落,所有学生都只好在学校吃饭.学校有一个食堂,虽然简陋,但食堂大厨总能做出让同学们满意的菜肴.当然,不同的人口味也不一定相同,但每个人的口味都可以 ...
- #12【BZOJ3003】LED BFS+状压DP
题解: 看到区间修改先想一下差分 这题用差分是为了分析问题 现在的问题就变成了 原序列全为0,要使得特定的k个点变为1,每个操作改变x,y+1 然后我们会发现 对于二元组a,b我们要修改它,实际上是在 ...
随机推荐
- HDU2955 Robberies[01背包]
Robberies Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)Total S ...
- WAMP中phpMyAdmin登陆不了问题的解决方法
WAMP中phpMyAdmin登陆不了问题的解决方法
- 微软前 CEO 史蒂姆·鲍尔默:除了我们没人拼得过苹果硬件
微软通过 Surface Book 正式宣布进军笔记本电脑行业的同时,宣传语表示 Surface Book“比苹果的 MacBook Pro 还要快两倍”. 业界对 Surface Book 的好评连 ...
- 用802.11n 加速,将android手机屏幕投影到win7电脑上
在做Android应用开发的时候,经常需要将已经完成的应用展示给一同开发的小伙伴,然而一直感觉没有找到一种十分方便的办法.特别是看到了开发IOS的小伙伴在做展示的时候的方便.因为Apple既做PC,也 ...
- JS中将JSON的字符串解析成JSON数据格式《转》
在JS中将JSON的字符串解析成JSON数据格式,一般有两种方式: 1.一种为使用eval()函数. 2. 使用Function对象来进行返回解析. 使用eval函数来解析,并且使用jquery的ea ...
- 用Javascript判断访问来源操作系统, 设备, 浏览器类型
var browser = { os : function() { var u = navigator.userAgent; return {// 操作系统 linux: !!u.match(/\(X ...
- 使用Proguard做Java代码混淆
下载Proguard, 我下的是最新的Proguad5.2 在windows下运行bin/proguardgui.bat, 可以看见图形界面, 载入配置, 然后process. 配置文件例子 -inj ...
- delphi附带通用控件安装方法:
附带通用控件安装方法:----------基本安装1.对于单个控件,Componet-->install component..-->PAS或DCU文件-->install;2.对于 ...
- DEDECMS之六 网站地图、RSS地图
在用织梦CMS做网站的都知道,在它的robots.txt是屏蔽掉了data目录的,可是,不巧dedecms默认的网站地图是在data下的,为了让蜘蛛更好的爬行,有必要将dedecms生成的网站地图放在 ...
- Linux操作系统下三种配置环境变量的方法
现在使用linux的朋友越来越多了,在linux下做开发首先就是需要配置环境变量,下面以配置java环境变量为例介绍三种配置环境变量的方法. 1.修改/etc/profile文件 如果你的计算机仅仅作 ...