CodeForces

来源:互联网 发布:三星系统升级软件 编辑:程序博客网 时间:2024/06/07 08:09

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.

Examples
input
5 7000E0T3T0TT0T0010T0T02T0T0T00T0S000
output
3
input
1 4SE23
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.




题意:题目超长 看完题就感觉心力交瘁了

你处在一片树林中 要从始点走到终点 树林中还有其他的人 他们有的只是一个人 有的是一堆人 会在你的路上拦截你并和你打架 你永远是赢家 问最少与几个人打架才能出树林


思路:在路上能碰到的敌人 一定都可以到达终点 所以可以把敌人都看做朝终点跑 在终点的地方等着拦截你

所以可以用反向搜索 从终点开始搜索 每次搜到敌人记录下步数和人数 然后推进vector里 最后遍历一遍vector 所有步数小于到达始点的人数都加进来


#include <iostream>#include <cstdio>#include <algorithm>#include <cstring>#include <queue>#include <stack>#include <map>#include <cmath>#include <vector>#define max_ 1010#define inf 0x3f3f3f3f#define ll long longusing namespace std;struct node{int x,y,w;int step;}zz,u;int n,m,f=-1;int sx,sy,ex,ey;int dir[4][2]={0,1,0,-1,1,0,-1,0};char mp[max_][max_];bool vis[max_][max_];queue<struct node>q;vector<struct node>v;void bfs(){u.x=ex;u.y=ey;u.step=0;vis[ex][ey]=true;q.push(u);while(!q.empty()){u=q.front();q.pop();for(int k=0;k<4;k++){int tx=u.x+dir[k][0];int ty=u.y+dir[k][1];if(tx>=1&&ty>=1&&tx<=n&&ty<=m){if(vis[tx][ty]==false&&mp[tx][ty]!='T'){vis[tx][ty]=true;zz.x=tx;zz.y=ty;zz.step=u.step+1;q.push(zz);else if(mp[tx][ty]>='1'&&mp[tx][ty]<='9'){zz.w=mp[tx][ty]-'0';v.push_back(zz);}elsef=zz.step;}}}}}int main(int argc, char const *argv[]){scanf("%d%d",&n,&m);int i,j;for(i=1;i<=n;i++){for(j=1;j<=m;j++){scanf(" %c",&mp[i][j]);if(mp[i][j]=='S')sx=i,sy=j;else if(mp[i][j]=='E')ex=i,ey=j;}}bfs();int l=v.size(),cnt=0;for(i=0;i<l;i++){if(v[i].step<=f)cnt+=v[i].w;}printf("%d\n",cnt );return 0;}


原创粉丝点击