现在的位置: 首页 > 综合 > 正文

Codeforces Round #221 (Div. 2) E. Circling Round Treasures (搜索+判断点在多边形内)

2014年02月22日 ⁄ 综合 ⁄ 共 4839字 ⁄ 字号 评论关闭
E. Circling Round Treasures
time limit per test

1 second

memory limit per test

256 megabytes

input

standard input

output

standard output

You have a map as a rectangle table. Each cell of the table is either an obstacle, or a treasure with a certain price, or a bomb, or an empty cell. Your initial position is also given to you.

You can go from one cell of the map to a side-adjacent one. At that, you are not allowed to go beyond the borders of the map, enter the cells with treasures, obstacles and bombs. To pick the treasures, you need to build a closed path (starting and ending in
the starting cell). The closed path mustn't contain any cells with bombs inside. Let's assume that the sum of the treasures' values that are located inside the closed path equals v,
and besides, you've made k single moves (from one cell to another) while you were going through the path, then such path brings you the profit of v - k rubles.

Your task is to build a closed path that doesn't contain any bombs and brings maximum profit.

Note that the path can have self-intersections. In order to determine if a cell lies inside a path or not, use the following algorithm:

  1. Assume that the table cells are points on the plane (the table cell on the intersection of the i-th column and the j-th
    row is point(i, j)). And the given path is a closed polyline that goes through these points.
  2. You need to find out if the point p of the table that is not crossed by the polyline lies inside the polyline.
  3. Let's draw a ray that starts from point p and does not intersect other points of the table (such ray must exist).
  4. Let's count the number of segments of the polyline that intersect the painted ray. If this number is odd, we assume that point p (and consequently, the table
    cell) lie inside the polyline (path). Otherwise, we assume that it lies outside.

Input

The first line contains two integers n and m (1 ≤ n, m ≤ 20) —
the sizes of the table. Next n lines each contains m characters
— the description of the table. The description means the following:

  • character "B" is a cell with a bomb;
  • character "S" is the starting cell, you can assume that it's empty;
  • digit c (1-8) is treasure with index c;
  • character "." is an empty cell;
  • character "#" is an obstacle.

Assume that the map has t treasures. Next t lines
contain the prices of the treasures. The i-th line contains the price of the treasure with index ivi ( - 200 ≤ vi ≤ 200).
It is guaranteed that the treasures are numbered from 1 to t. It is guaranteed that the map has not more than 8 objects in total. Objects are bombs and
treasures. It is guaranteed that the map has exactly one character "S".

Output

Print a single integer — the maximum possible profit you can get.

Sample test(s)
input
4 4
....
.S1.
....
....
10
output
2
input
7 7
.......
.1###2.
.#...#.
.#.B.#.
.3...4.
..##...
......S
100
100
100
100
output
364
input
7 8
........
........
....1B..
.S......
....2...
3.......
........
100
-100
100
output
0
input
1 1
S
output
0
Note

In the first example the answer will look as follows.

In the second example the answer will look as follows.

In the third example you cannot get profit.

In the fourth example you cannot get profit as you cannot construct a closed path with more than one cell.

题意:

给你一个地图,上面有一些宝石、炸弹,让你从一个点出发回到这个点,使圈起来的宝石的价值-步数最大,并且不能圈到炸弹,能够圈到‘#’,一个点允许重复走。


思路:

就是 poj3182 的加强版,建议先做这个题,可以参考:poj 3182 题解

预处理每个圈住宝石的状态的价值,炸弹可当做价值为负无穷的宝石,取dp[x][y][k]判重,x、y为位置,k为圈住宝石的状态,剩下的就是怎样判断一个路径圈住宝石的状态了,方法是过点做一条射线,这个射线与多边形交奇数次为在多边形内,偶数次则为多边形外,具体操作只需要虚拟的射线就够了。

代码:

#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>
#include <cmath>
#include <string>
#include <map>
#include <stack>
#include <vector>
#include <set>
#include <queue>
//#pragma comment (linker,"/STACK:102400000,102400000")
#define maxn 25
#define mod 1000000007
#define INF 0x3f3f3f3f
#define OO 0xbfbfbfbf
using namespace std;

typedef long long ll;
int n,m,ans,cnt,flag,tot;
int sx,sy;
int dx[]= {-1,1,0,0};
int dy[]= {0,0,-1,1};
int dp[maxn][maxn][1<<8];
int val[8],w[1<<8];
int gx[8],gy[8];
char mp[maxn][maxn];
char s[maxn];
struct Node
{
    int x,y,k;
} cur,now;

bool issur(int nx,int ny,int tx,int ty,int j)
{
    if(nx==gx[j]&&ny<gy[j])
    {
        if(tx<gx[j]) return true ;
    }
    else if(tx==gx[j]&&ty<gy[j])
    {
        if(nx<gx[j]) return true ;
    }
    return false ;
}
void bfs()
{
    int i,j,t,k,nx,ny,tx,ty,nk;
    queue<Node>q;
    memset(dp,-1,sizeof(dp));
    ans=-INF;
    cur.x=sx;
    cur.y=sy;
    cur.k=0;
    dp[sx][sy][0]=0;
    q.push(cur);
    while(!q.empty())
    {
        now=q.front();
        q.pop();
        nx=now.x;
        ny=now.y;
        nk=now.k;
        if(nx==sx&&ny==sy) ans=max(ans,w[nk]-dp[nx][ny][nk]);
        for(i=0; i<4; i++)
        {
            tx=nx+dx[i];
            ty=ny+dy[i];
            k=nk;
            if(tx<1||tx>n||ty<1||ty>m) continue ;
            if(!(mp[tx][ty]=='S'||mp[tx][ty]=='.')) continue ;
            for(j=0;j<=cnt;j++)
            {
                if(issur(nx,ny,tx,ty,j)) k^=(1<<j);
            }
            if(dp[tx][ty][k]!=-1&&dp[tx][ty][k]<=dp[nx][ny][nk]+1) continue ;
            cur.x=tx;
            cur.y=ty;
            cur.k=k;
            dp[tx][ty][k]=dp[nx][ny][nk]+1;
            q.push(cur);
        }
    }
}
int main()
{
    int i,j,t;
    while(~scanf("%d%d",&n,&m))
    {
        cnt=-1;
        for(i=1; i<=n; i++)
        {
            scanf("%s",s);
            for(j=1; j<=m; j++)
            {
                mp[i][j]=s[j-1];
                if(mp[i][j]=='S') sx=i,sy=j;
                if(mp[i][j]>='1'&&mp[i][j]<='8')
                {
                    t=mp[i][j]-'1';
                    cnt++;
                    gx[t]=i,gy[t]=j;
                }
            }
        }
        for(i=0;i<=cnt;i++)
        {
            scanf("%d",&val[i]);
        }
        for(i=1; i<=n; i++)
        {
            for(j=1; j<=m; j++)
            {
                if(mp[i][j]=='B') gx[++cnt]=i,gy[cnt]=j,val[cnt]=-10000;
            }
        }
        memset(w,0,sizeof(w));
        tot=1<<(cnt+1);
        for(i=0;i<tot;i++)
        {
            for(j=0;j<=cnt;j++)
            {
                if(i&(1<<j)) w[i]+=val[j];
            }
        }
        bfs();
        printf("%d\n",ans);
    }
    return 0;
}
/*
3 3
...
SB.
...

10 11
........S..
...........
5........1.
.7#........
...64.#....
...........
..........#
.2.........
.....3.....
...........
-9
33
9
-20
12
10
-29

ans:0 8
*/




抱歉!评论已关闭.