BZOJ 3049: [Usaco2013 Jan]Island Travels

博客介绍了如何解决USACO 2013 January竞赛中的Island Travels问题。Bessie需要在有限的浅水区域中游泳以访问所有15个岛屿,目标是找到最小的游泳距离。问题涉及到建立图、BFS搜索以及动态规划(DP)来计算最短路径。博主分享了他们的广搜建图和DP解决方案,尽管代码较长,但运行效率高。
摘要由CSDN通过智能技术生成

Description

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:你最少要经过几个浅水区?保证有解。

Input

  • 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’.

Output

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

题意已经很清楚了,,首先就是建图问题,很显然的广搜,,但是我的广搜打了几十行,,一道题打了将近两个小时。。
广搜时顺便统计出各陆地间的距离,广搜建好图之后,,就是装压dp(数据范围15,,标算太明显了。。)f[i][j]表示当前位置为第j个陆地,i是已经经过的陆地的集合,,然后转移即可。显然当前状态可以转移到下一个可以抵达的陆地,同时将当前岛屿加到集合里即 f[i| 2^j ][to]=min(f[i| 2^j ][to],f[i][j]+dis[j][to]);

虽然代码很长,,但跑的飞快 233

代码如下:

#include<iostream>
#include<cstdio>
#include<vector>
#include<queue>
using namespace std;
int f[32780][18],to[18][18],tot,r,c,dis[2700];
  • 2
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值