题目描述

Farmer John has taken the cows to a vacation out on the ocean! The cows are living on N (1 <= N <= 15) islands, which are located on an R x C grid (1 <= R, C <= 50). An island is a maximal connected group of squares on the grid that are marked as 'X', where two 'X's are connected if they share a side. (Thus, two 'X's sharing a corner are not necessarily connected.)

Bessie, however, is arriving late, so she is coming in with FJ by helicopter. Thus, she can first land on any of the islands she chooses. She wants to visit all the cows at least once, so she will travel between islands until she has visited all N of the islands at least once.

FJ's helicopter doesn't have much fuel left, so he doesn't want to use it until the cows decide to go home. Fortunately, some of the squares in the grid are shallow water, which is denoted by 'S'. Bessie can swim through these squares in the four cardinal directions (north, east, south, west) in order to travel between the islands. She can also travel (in the four cardinal directions) between an island and shallow water, and vice versa.

Find the minimum distance Bessie will have to swim in order to visit all of the islands. (The distance Bessie will have to swim is the number of distinct times she is on a square marked 'S'.) After looking at a map of the area, Bessie knows this will be possible.

给你一张r*c的地图,有’S’,’X’,’.’三种地形,所有判定相邻与行走都是四连通的。我们设’X’为陆地,一个’X’连通块为一个岛屿,’S’为浅水,’.’为深水。刚开始你可以降落在任一一块陆地上,在陆地上可以行走,在浅水里可以游泳。并且陆地和浅水之间可以相互通行。但无论如何都不能走到深水。你现在要求通过行走和游泳使得你把所有的岛屿都经过一边。Q:你最少要经过几个浅水区?保证有解。

输入输出格式

输入格式:

* Line 1: Two space-separated integers: R and C.

* Lines 2..R+1: Line i+1 contains C characters giving row i of the
grid. Deep water squares are marked as '.', island squares are marked as
'X', and shallow water squares are marked as 'S'.

输出格式:

* Line 1: A single integer representing the minimum distance Bessie has to swim to visit all islands.

输入输出样例

输入样例#1:

5 4
XX.S
.S..
SXSS
S.SX
..SX
输出样例#1:

3

说明

There are three islands with shallow water paths connecting some of them.

Bessie can travel from the island in the top left to the one in the middle, swimming 1 unit, and then travel from the middle island to the one in the bottom right, swimming 2 units, for a total of 3 units.


注意到岛屿数量只有15个,所以考虑状压。

于是我们先跑dfs,把所有岛屿找出来,然后对于每个岛屿跑spfa求出经过的浅滩数。

然后设f[i][j]表示在i岛,经过岛屿的状态为j的最少经过的浅滩。

然后就是普通的DP。

话说把三个不难的知识块放在一起考仍然增加不了它的难度。

一开始是不想写spfa,直接暴力求出任意两个坐标的距离,因为复杂度在允许范围之内,写起来又方便...

于是TLE三个点,不得不说数据一点都不弱(-_-||

#include <iostream>
#include <cstdio>
#include <cstring>
#include <queue>
using namespace std;
inline int read(){
int res=;char ch=getchar();
while(!isdigit(ch))ch=getchar();
while(isdigit(ch)){res=(res<<)+(res<<)+(ch^);ch=getchar();}
return res;
} int dx[]={, , -, , }, dy[]={, , , , -};
int n, m;
char mp[][];
bool vis[][];
int belong[][], tot;
int f[][<<], bin[]; void dfs(int x, int y)
{
belong[x][y] = tot;
for (int i = ; i <= ; i ++)
{
int tx = x + dx[i], ty = y + dy[i];
if (tx <= or tx > n or ty <= or ty > m) continue;
if (mp[tx][ty] != 'X') continue;
if (belong[tx][ty]) continue;
dfs(tx, ty);
}
} int dis[][], w[][][][];
struct date{
int x, y, stp;
}; inline void bfs(int X, int Y)
{
memset(vis, , sizeof vis);
queue <date> q;
q.push((date){X, Y, });
vis[X][Y] = ;
w[X][Y][X][Y] = ;
while(!q.empty())
{
int x = q.front().x, y = q.front().y, tp = q.front().stp;
q.pop();
vis[x][y] = ;
w[X][Y][x][y] = min(w[X][Y][x][y], tp);
for (int i = ; i <= ; i ++)
{
int tx = x + dx[i], ty = y + dy[i];
if (tx <= or tx > n or ty <= or ty > m) continue;
if (vis[tx][ty]) continue;
if (mp[tx][ty] == '.') continue;
q.push((date){tx, ty, tp + (mp[tx][ty]=='S')});
}
}
} int main()
{
n = read(), m = read();
for (int i = ; i <= n ; i ++)
for (int j = ; j <= m ; j ++)
cin >> mp[i][j]; for (int i = ; i <= n ; i ++)
{
for (int j = ; j <= m ; j ++)
{
if (!belong[i][j] and mp[i][j] == 'X')
{
tot++;
dfs(i, j);
}
}
}
memset(w, 0x3f, sizeof w);
for (int i = ; i <= n ; i ++)
{
for (int j = ; j <= m ; j ++)
{
bfs(i, j);
}
}
memset(dis, 0x3f, sizeof dis);
for (int i = ; i <= n ; i ++)
for (int j = ; j <= m ; j ++)
for (int x = ; x <= n ; x ++)
for (int y = ; y <= m ; y ++)
dis[belong[i][j]][belong[x][y]] = min(dis[belong[i][j]][belong[x][y]], w[i][j][x][y]);
memset(f, 0x3f, sizeof f);
bin[] = ;for(int i=;i<=;i++) bin[i]=bin[i-]<<;
for (int i = ; i <= tot ; i ++) f[i][bin[i]] = ;
for (int j = ; j <= (<<tot)- ; j ++)
{
for (int i = ; i <= tot ; i ++)
{
if ((j & bin[i]) == ) continue;
for (int k = ; k <= tot ; k ++)
{
if (k == i) continue;
if (j & bin[k]) continue;
f[k][j+bin[k]] = min(f[k][j+bin[k]], f[i][j] + dis[i][k]);
}
}
}
int ans = 1e9;
for (int i = ; i <= tot ; i ++)
ans = min(ans, f[i][(<<tot)-]);
printf("%d\n", ans);
return ;
}

复杂度允许的暴力

然后无奈只好写spfa...

于是调了好久好久...

最后发现好像个给每个联通快记大小的时候,少了初始点。

然后加上了91分,实在不想改了一个特判走人。

#include <iostream>
#include <cstdio>
#include <cstring>
#include <queue>
using namespace std;
inline int read(){
int res=;char ch=getchar();
while(!isdigit(ch))ch=getchar();
while(isdigit(ch)){res=(res<<)+(res<<)+(ch^);ch=getchar();}
return res;
} int dx[]={, , -, , }, dy[]={, , , , -};
int n, m;
char mp[][];
bool vis[][];
int belong[][], tot;
int f[][<<], bin[]; int siz[];
struct date{
int x, y;
}block[][]; void dfs(int x, int y)
{
belong[x][y] = tot;
for (register int i = ; i <= ; i ++)
{
int tx = x + dx[i], ty = y + dy[i];
if (tx <= or tx > n or ty <= or ty > m) continue;
if (mp[tx][ty] != 'X') continue;
if (belong[tx][ty]) continue;
block[tot][++siz[tot]] = (date){tx, ty};
dfs(tx, ty);
}
} int dis[][], w[][]; inline void bfs(int bl)
{
memset(vis, , sizeof vis);
memset(w, 0x3f, sizeof w);
queue <date> q;
for (register int i = ; i <= siz[bl] ; i ++)
{
q.push(block[bl][i]);
w[block[bl][i].x][block[bl][i].y] = ;
vis[block[bl][i].x][block[bl][i].y] = ;
}
while(!q.empty())
{
int x = q.front().x, y = q.front().y;
q.pop();
vis[x][y] = ;
for (register int i = ; i <= ; i ++)
{
int tx = x + dx[i], ty = y + dy[i];
if (tx <= or tx > n or ty <= or ty > m) continue;
if (mp[tx][ty] == '.') continue;
if (mp[tx][ty] == 'X')
{
if (w[tx][ty] > w[x][y])
{
w[tx][ty] = w[x][y];
if (!vis[tx][ty]) vis[tx][ty] = , q.push((date){tx, ty});
}
dis[bl][belong[tx][ty]] = min(dis[bl][belong[tx][ty]], w[tx][ty]);
dis[belong[tx][ty]][bl] = min(dis[belong[tx][ty]][bl], w[tx][ty]);
}
else
{
if (w[tx][ty] > w[x][y] + )
{
w[tx][ty] = w[x][y] + ;
if (!vis[tx][ty]) vis[tx][ty] = , q.push((date){tx, ty});
}
}
}
}
} int main()
{
n = read(), m = read();
for (register int i = ; i <= n ; i ++)
for (register int j = ; j <= m ; j ++)
cin >> mp[i][j]; for (register int i = ; i <= n ; i ++)
{
for (register int j = ; j <= m ; j ++)
{
if (!belong[i][j] and mp[i][j] == 'X')
{
tot++;
block[tot][++siz[tot]] = (date){i, j} ;
dfs(i, j);
}
}
}
memset(dis, 0x3f, sizeof dis);
for (register int i = ; i <= tot ; i ++)
{
dis[i][i] = ;
bfs(i);
}
memset(f, 0x3f, sizeof f);
for (register int i = ; i <= tot ; i ++) f[i][<<(i-)] = ;
for (register int j = ; j <= (<<tot)- ; j ++)
{
for (register int i = ; i <= tot ; i ++)
{
if ((j & (<<(i-))) == ) continue;
for (register int k = ; k <= tot ; k ++)
{
if (k == i) continue;
if (j & (<<(k-))) continue;
f[k][j|(<<(k-))] = min(f[k][j|(<<(k-))], f[i][j] + dis[i][k]);
}
}
}
int ans = 1e9;
for (register int i = ; i <= tot ; i ++)
ans = min(ans, f[i][(<<tot)-]);
if (ans == ) ans = ;
printf("%d\n", ans);
return ;
}

$\sum_{age=16}^{18} hardworking = success$

[Luogu3070][USACO13JAN]岛游记Island Travels的更多相关文章

  1. 洛谷P3070 [USACO13JAN]岛游记Island Travels

    P3070 [USACO13JAN]岛游记Island Travels 题目描述 Farmer John has taken the cows to a vacation out on the oce ...

  2. 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 ...

  3. 解题:USACO13JAN Island Travels

    题面 好像没啥可说的,就当练码力了...... 先用BFS跑出岛屿,然后跑最短路求岛屿间的距离,最后状压DP得出答案 注意细节,码码码2333 #include<set> #include ...

  4. 菲律宾薄荷岛游记 & 攻略

    2019年的4月跑去薄荷岛玩了!其实是一个比较小众的海岛,感觉那边还是比较穷的,但是景色真的好好啊!而且我们两个人,最后包括前期买水母服.浮潜面罩.防晒霜什么的,总共花费才人均5000+,非常划算了! ...

  5. [Usaco2013 Jan]Island Travels

    Description Farmer John has taken the cows to a vacation out on the ocean! The cows are living on N ...

  6. 【BZOJ 3049】【USACO2013 Jan】Island Travels BFS+状压DP

    这是今天下午的互测题,只得了60多分 分析一下错因: $dis[i][j]$只记录了相邻的两个岛屿之间的距离,我一开始以为可以,后来$charge$提醒我有可能会出现来回走的情况,而状压转移就一次,无 ...

  7. bzoj AC倒序

    Search GO 说明:输入题号直接进入相应题目,如需搜索含数字的题目,请在关键词前加单引号 Problem ID Title Source AC Submit Y 1000 A+B Problem ...

  8. SFC游戏列表(维基百科)

    SFC游戏列表 日文名 中文译名 英文版名 发行日期 发行商 スーパーマリオワールド 超级马里奥世界 Super Mario World 1990年11月21日 任天堂 エフゼロ F-Zero F-Z ...

  9. 关于VR技术和未来发展---转

    原文地址:http://mp.weixin.qq.com/s?__biz=MzA4MTIwNTczMQ==&mid=2651345594&idx=3&sn=2741ab7321 ...

随机推荐

  1. java中的GC

    1.GC发生在JVM中的堆区 2.GC是很么? 1.次数上频繁收集Young区  Minor  GC 2.次数上较少收集Old区       Full      GC 3.基本不动的Perm区 3.G ...

  2. selenium IDE的断言与验证

    断言 验证应用程序的状态是否同所期望的一致.常见的断言包括验证页面内容,如标题是否为X或当前位置是否正确等等 断言被用于4种模式+5种手段: Assert Assert断言失败时,该测试将终止 ver ...

  3. Spring入门(十二):Spring MVC使用讲解

    1. Spring MVC介绍 提到MVC,参与过Web应用程序开发的同学都很熟悉,它是展现层(也可以理解成直接展现给用户的那一层)开发的一种架构模式,M全称是Model,指的是数据模型,V全称是Vi ...

  4. 增删改查——PreparedStatement接口

    1.添加 package pers.Pre.add; import java.sql.Connection; import java.sql.DriverManager; import java.sq ...

  5. 你好,C语言

    对于我来说,C语言就和陌生人一样,对他完全不了解,更不要提什么C++了,这就要我主动和他打招呼,深入认识了解它了哈.目前对于C语言的理解,只知道他的的功强大,能操作硬件,编写各类驱动,强悍的LINUX ...

  6. DirectX12 3D 游戏开发与实战第一章内容

    DirectX12 3D 第一章内容 学习目标 1.学习向量在几何学和数学中的表示方法 2.了解向量的运算定义以及它在几何学中的应用 3.熟悉DirectXMath库中与向量有关的类和方法 1.1 向 ...

  7. HTTP协议的运行流程

    1.HTTP协议的流程是什么样的呢? (1)http客户端发起请求,创建端口 (2)http服务器在端口监听客户端请求 (3)http服务器向客户端返回状态和内容 更详细的请参考大神:https:// ...

  8. 【linux】【PostgreSQL】PostgreSQL安装

    前言 PostgreSQL是一种特性非常齐全的自由软件的对象-关系型数据库管理系统(ORDBMS),是以加州大学计算机系开发的POSTGRES,4.2版本为基础的对象关系型数据库管理系统.POSTGR ...

  9. lvm创建逻辑卷技巧

    公司使用的服务器都是虚拟机,是虚拟机管理员通过模板创建的. 创建的所有逻辑卷都是使用的sda盘. 而我们在部署应用时需要和系统所在盘分离.(提高磁盘读写速度,避免系统盘被占满) 以前都是先创建新的逻辑 ...

  10. 洗牌Shuffle'm Up POJ-3087 模拟

    题目链接:Shuffle'm Up 题目大意 模拟纸牌的洗牌过程,已知两个牌数相等的牌堆.求解经过多少次洗牌的过程,使牌的顺序与目标顺序相同. 思路 直接模拟,主要是字符串的操作.问题是,如何判断出不 ...