CF375C.Circling Round Treasures

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

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 vv , and besides, you've made kk single moves (from one cell to another) while you were going through the path, then such path brings you the profit of vkv-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 ii -th column and the jj -th row is point (i,j)(i,j) ). And the given path is a closed polyline that goes through these points.
  2. You need to find out if the point pp of the table that is not crossed by the polyline lies inside the polyline.
  3. Let's draw a ray that starts from point pp 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 pp (and consequently, the table cell) lie inside the polyline (path). Otherwise, we assume that it lies outside.

输入格式

The first line contains two integers nn and mm (1<=n,m<=20)(1<=n,m<=20) — the sizes of the table. Next nn lines each contains mm 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 cc (1-8) is treasure with index cc ;
  • character "." is an empty cell;
  • character "#" is an obstacle.

Assume that the map has tt treasures. Next tt lines contain the prices of the treasures. The ii -th line contains the price of the treasure with index ii , viv_{i} (200<=vi<=200)(-200<=v_{i}<=200) . It is guaranteed that the treasures are numbered from 1 to tt . 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".

输出格式

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

输入输出样例

  • 输入#1

    4 4
    ....
    .S1.
    ....
    ....
    10
    

    输出#1

    2
    
  • 输入#2

    7 7
    .......
    .1###2.
    .#...#.
    .#.B.#.
    .3...4.
    ..##...
    ......S
    100
    100
    100
    100
    

    输出#2

    364
    
  • 输入#3

    7 8
    ........
    ........
    ....1B..
    .S......
    ....2...
    3.......
    ........
    100
    -100
    100
    

    输出#3

    0
    
  • 输入#4

    1 1
    S
    

    输出#4

    0
    

说明/提示

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.

首页