zoukankan      html  css  js  c++  java
  • CF 329B(Biridian Forest-贪心-非二分)

    B. 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.

     


     

    一句话题解:所有人到终点等它即可。。。

    完全没想到是有多弱?。。。。。

    #include<cstdio>
    #include<cstring>
    #include<cstdlib>
    #include<algorithm>
    #include<functional>
    #include<iostream>
    #include<cmath>
    #include<cctype>
    #include<ctime>
    using namespace std;
    #define For(i,n) for(int i=1;i<=n;i++)
    #define Fork(i,k,n) for(int i=k;i<=n;i++)
    #define Rep(i,n) for(int i=0;i<n;i++)
    #define ForD(i,n) for(int i=n;i;i--)
    #define RepD(i,n) for(int i=n;i>=0;i--)
    #define Forp(x) for(int p=pre[x];p;p=next[p])
    #define Lson (x<<1)
    #define Rson ((x<<1)+1)
    #define MEM(a) memset(a,0,sizeof(a));
    #define MEMI(a) memset(a,127,sizeof(a));
    #define MEMi(a) memset(a,128,sizeof(a));
    #define INF (2139062143)
    #define F (100000007)
    #define MAXN (1000+10) 
    long long mul(long long a,long long b){return (a*b)%F;}
    long long add(long long a,long long b){return (a+b)%F;}
    long long sub(long long a,long long b){return (a-b+(a-b)/F*F+F)%F;}
    typedef long long ll;
    int n,m,tx,ty,sx,sy;
    char c[MAXN][MAXN];
    bool b[MAXN][MAXN]={0};
    int qx[MAXN*MAXN],qy[MAXN*MAXN],head=1,tail=1,d[MAXN][MAXN];
    void bfs()
    {
    	qx[1]=tx,qy[1]=ty;b[tx][ty]=1;
    	memset(d,127,sizeof(d));d[tx][ty]=0;
    	while (head<=tail)
    	{
    		int x=qx[head],y=qy[head];
    		if (1<x&&!b[x-1][y]) b[x-1][y]=1,d[x-1][y]=d[x][y]+1,qx[++tail]=x-1,qy[tail]=y;
    		if (x<n&&!b[x+1][y]) b[x+1][y]=1,d[x+1][y]=d[x][y]+1,qx[++tail]=x+1,qy[tail]=y;
    		if (1<y&&!b[x][y-1]) b[x][y-1]=1,d[x][y-1]=d[x][y]+1,qx[++tail]=x,qy[tail]=y-1;
    		if (y<m&&!b[x][y+1]) b[x][y+1]=1,d[x][y+1]=d[x][y]+1,qx[++tail]=x,qy[tail]=y+1;		
    		head++;
    	}
    	
    }
    int main()
    {
    //	freopen("Biridian Forest.in","r",stdin);
    	scanf("%d%d",&n,&m);
    	For(i,n) scanf("%s",c[i]+1);
    	For(i,n) For(j,m)
    		if (c[i][j]=='S') sx=i,sy=j;
    		else if (c[i][j]=='E') tx=i,ty=j;
    		else if (c[i][j]=='T') b[i][j]=1;
    	bfs();
    	/*
    	For(i,n)
    	{
    		For(j,m) cout<<d[i][j]<<' ';cout<<endl;
    	}
    	*/
    	int ans=0;
    	For(i,n) For(j,m)
    		if (d[i][j]<=d[sx][sy]&&isdigit(c[i][j])) ans+=c[i][j]-48;
    	cout<<ans<<endl;
    	
    	
    	return 0;
    }
    




  • 相关阅读:
    [转载红鱼儿]delphi 实现微信开发(1)
    Devexpress VCL Build v2013 vol 14.1.3 发布
    [翻译]LSP程序的分类
    睡眠不好
    LuaStudio 9.27 去10分钟退出暗桩板
    vs2012 提示 未能正确加载 "Visual C++ Language Manager Package" 包 的解决办法
    岁月蹉跎
    重新安装系统之前备份
    运动会
    乱思
  • 原文地址:https://www.cnblogs.com/xinyuyuanm/p/3206760.html
Copyright © 2011-2022 走看看