[Codeforces Round #192 (Div. 2)] D. Biridian Forest

D. Biridian Forest
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

You're a mikemon breeder currently in the middle of your journey to become a mikemon master. Your current obstacle is go through the infamous Biridian Forest.

The forest

The Biridian Forest is a two-dimensional grid consisting of r rows and c columns. Each cell in Biridian Forest may contain a tree, or may be vacant. A vacant cell may be occupied by zero or more mikemon breeders (there may also be breeders other than you in the forest). Mikemon breeders (including you) cannot enter cells with trees. One of the cells is designated as the exit cell.

The initial grid, including your initial position, the exit cell, and the initial positions of all other breeders, will be given to you. Here's an example of such grid (from the first example):

Moves

Breeders (including you) may move in the forest. In a single move, breeders may perform one of the following actions:

  • Do nothing.
  • Move from the current cell to one of the four adjacent cells (two cells are adjacent if they share a side). Note that breeders cannot enter cells with trees.
  • If you are located on the exit cell, you may leave the forest. Only you can perform this move — all other mikemon breeders will never leave the forest by using this type of movement.

After each time you make a single move, each of the other breeders simultaneously make a single move (the choice of which move to make may be different for each of the breeders).

Mikemon battle

If you and t (t > 0) mikemon breeders are located on the same cell, exactly t mikemon battles will ensue that time (since you will be battling each of those t breeders once). After the battle, all of those t breeders will leave the forest to heal their respective mikemons.

Note that the moment you leave the forest, no more mikemon battles can ensue, even if another mikemon breeder move to the exit cell immediately after that. Also note that a battle only happens between you and another breeders — there will be no battle between two other breeders (there may be multiple breeders coexisting in a single cell).

Your goal

You would like to leave the forest. In order to do so, you have to make a sequence of moves, ending with a move of the final type. Before you make any move, however, you post this sequence on your personal virtual idol Blog. Then, you will follow this sequence of moves faithfully.

Goal of other breeders

Because you post the sequence in your Blog, the other breeders will all know your exact sequence of moves even before you make your first move. All of them will move in such way that will guarantee a mikemon battle with you, if possible. The breeders that couldn't battle you will do nothing.

Your task

Print the minimum number of mikemon battles that you must participate in, assuming that you pick the sequence of moves that minimize this number. Note that you are not required to minimize the number of moves you make.

Input

The first line consists of two integers: r and c (1 ≤ r, c ≤ 1000), denoting the number of rows and the number of columns in Biridian Forest. The next r rows will each depict a row of the map, where each character represents the content of a single cell:

  • 'T': A cell occupied by a tree.
  • 'S': An empty cell, and your starting position. There will be exactly one occurence of this in the map.
  • 'E': An empty cell, and where the exit is located. There will be exactly one occurence of this in the map.
  • A digit (0-9): A cell represented by a digit X means that the cell is empty and is occupied by X breeders (in particular, if X is zero, it means that the cell is not occupied by any breeder).

It is guaranteed that it will be possible for you to go from your starting position to the exit cell through a sequence of moves.

Output

A single line denoted the minimum possible number of mikemon battles that you have to participate in if you pick a strategy that minimize this number.

Sample test(s)
input
5 7
000E0T3
T0TT0T0
010T0T0
2T0T0T0
0T0S000
output
3
input
1 4
SE23
output
2
Note

The following picture illustrates the first example. The blue line denotes a possible sequence of moves that you should post in your blog:

The three breeders on the left side of the map will be able to battle you — the lone breeder can simply stay in his place until you come while the other two breeders can move to where the lone breeder is and stay there until you come. The three breeders on the right does not have a way to battle you, so they will stay in their place.

For the second example, you should post this sequence in your Blog:

Here's what happens. First, you move one cell to the right.

Then, the two breeders directly to the right of the exit will simultaneously move to the left. The other three breeder cannot battle you so they will do nothing.

You end up in the same cell with 2 breeders, so 2 mikemon battles are conducted. After those battles, all of your opponents leave the forest.

 Finally, you make another move by leaving the forest.

题意:一个矩阵中,某些方格内有一定数量敌人,如果路上遇到敌人需要击败他们。求一个人从起点到门的路上最少的打斗数量,敌人也会移动。

题解:注意敌人也会移动。将路上会遇到敌人转化为终点到敌人的距离小于终点到人起点的距离,可以理解为敌人可以提前在终点等着。这样直接从终点做一次BFS即可。

最后注意统计敌人数量的时候有敌人的地方必须之前遍历过才可以。测试的时候没有注意这一点一直WA。

Test: #5, time: 0 ms., memory: 24656 KB, exit code: 0, checker exit code: 1, verdict: WRONG_ANSWER
Input
1 10
9T9TSET9T9
Output
36
Answer
0
Checker Log
wrong answer expected '0', found '36'

题目地址:http://codeforces.com/contest/330/problem/D

代码:

 1 #include<stdio.h>
 2 #include<string.h>
 3 #include<stdbool.h>
 4 int i,j,n,m,s1,s2,t1,t2,head,tail,xx,yy,sum,
 5     dist[1011][1011],
 6     di[1011][1011],
 7     q[2000000][2],
 8     dx[4]={0,0,1,-1},
 9     dy[4]={1,-1,0,0};
10 
11 bool can[1011][1011];
12 
13 char a[1100];
14 
15 int 
16 pre()
17 {
18     memset(can,false,sizeof(can));
19     memset(di,0,sizeof(di));
20     memset(dist,0,sizeof(dist));
21     return 0;
22 }
23 
24 int
25 init()
26 {
27     scanf("%d%d
",&n,&m);
28     for(i=1;i<=n;i++)
29     {
30         scanf("%s",&a);
31         for(j=0;j<m;j++)
32         {
33             if(a[j]=='E')
34             {
35                 t1=i;
36                 t2=j;
37             }
38             if(a[j]=='S')
39             {
40                 s1=i;
41                 s2=j;
42                 can[i][j]=true;
43             }
44             if((a[j]>='0')&&(a[j]<='9'))
45             {
46                 can[i][j]=true;
47                 di[i][j]=a[j]-'0';
48             }
49         }
50     }
51     
52     return 0;
53 }
54 
55 int 
56 main()
57 {
58     pre();
59     init();
60     head=0;tail=1;
61     q[1][0]=t1;
62     q[1][1]=t2;
63     
64    
65     while(head!=tail)
66     {
67         head=head%2000000+1;
68         for(i=0;i<4;i++)
69         {
70             xx=dx[i]+q[head][0];
71             yy=dy[i]+q[head][1];
72             if (can[xx][yy])
73             {
74                 tail=tail%2000000+1;
75                 q[tail][0]=xx;
76                 q[tail][1]=yy;
77                 dist[xx][yy]=dist[q[head][0]][q[head][1]]+1;
78                 can[xx][yy]=false;
79             }
80         }
81     }
82 
83     for(i=1;i<=n;i++)
84         for(j=0;j<m;j++)
85         {
86             if((!can[i][j])&&(di[i][j]>0)&&(dist[i][j]<=dist[s1][s2]))
87             sum+=di[i][j];
88         }
89      
90     
91         printf("%d
",sum);
92     return 0;
93 }
94         
原文地址:https://www.cnblogs.com/sxiszero/p/3641811.html