codeforces_677D. Vanya and Treasure(BFS+DP)

16 篇文章 0 订阅
10 篇文章 0 订阅
D. Vanya and Treasure
time limit per test
1.5 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

Vanya is in the palace that can be represented as a grid n × m. Each room contains a single chest, an the room located in the i-th row and j-th columns contains the chest of type aij. Each chest of type x ≤ p - 1 contains a key that can open any chest of type x + 1, and all chests of type 1 are not locked. There is exactly one chest of type p and it contains a treasure.

Vanya starts in cell (1, 1) (top left corner). What is the minimum total distance Vanya has to walk in order to get the treasure? Consider the distance between cell (r1, c1) (the cell in the row r1 and column c1) and (r2, c2) is equal to |r1 - r2| + |c1 - c2|.

Input

The first line of the input contains three integers nm and p (1 ≤ n, m ≤ 300, 1 ≤ p ≤ n·m) — the number of rows and columns in the table representing the palace and the number of different types of the chests, respectively.

Each of the following n lines contains m integers aij (1 ≤ aij ≤ p) — the types of the chests in corresponding rooms. It's guaranteed that for each x from 1 to p there is at least one chest of this type (that is, there exists a pair of r and c, such that arc = x). Also, it's guaranteed that there is exactly one chest of type p.

Output

Print one integer — the minimum possible total distance Vanya has to walk in order to get the treasure from the chest of type p.

Examples
input
3 4 3
2 1 1 1
1 1 1 1
2 1 1 3
output
5
input
3 3 9
1 3 5
8 9 7
4 6 2
output
22
input
3 4 12
1 2 3 4
8 7 6 5
9 10 11 12
output
11
 
   
直接bfs会超时,需要对小数据dp优化。
 
   
#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <cmath>
#include <stack>
#include <bitset>
#include <queue>
#include <set>
#include <map>
#include <string>
#include <algorithm>
#define Si(a) scanf("%d",&a)
#define Sl(a) scanf("%lld",&a)
#define Sd(a) scanf("%lf",&a)
#define Ss(a) scanf("%s",a)
#define Pi(a) printf("%d\n",(a))
#define Pl(a) printf("%lld\n",(a))
#define Pd(a) printf("%lf\n",(a))
#define Ps(a) printf("%s\n",(a))
#define W(a) while(a--)
#define mem(a,b) memset(a,(b),sizeof(a))
#define FOP freopen("data.txt","r",stdin)
#define inf 0x3f3f3f3f
#define maxn 310
#define mod 1000000007
#define PI acos(-1.0)
#define LL long long
using namespace std;

vector<pair<int,int> >V[maxn*maxn];
int dx[4]= {0,-1,0,1};
int dy[4]= {1,0,-1,0};
int a[maxn][maxn];
int dp[maxn][maxn];
int dis[maxn][maxn];
int vis[maxn][maxn];

int main()
{
    int n,m,p;
    cin>>n>>m>>p;
    mem(dp,127);
    for(int i=1; i<=n; i++)
        for(int j=1; j<=m; j++)
        {
            Si(a[i][j]);
            V[a[i][j]].push_back(make_pair(i,j));
            if(a[i][j]==1)dp[i][j]=i-1+j-1;
        }
    queue<pair<int,int> >Q;
    int level=sqrt(n*m);
    for(int i=1; i<p; i++)
    {

        if(V[i].size()<=level)
        {
            for(int j=0;j<V[i+1].size();j++)
            {
                for(int k=0;k<V[i].size();k++)
                {
                    dp[V[i+1][j].first][V[i+1][j].second]=
                    min(dp[V[i+1][j].first][V[i+1][j].second],dp[V[i][k].first][V[i][k].second]+
                        abs(V[i+1][j].first-V[i][k].first)+abs(V[i+1][j].second-V[i][k].second));
                }
            }
        }
        else
        {
            mem(dis,127);
            for(int j=0; j<V[i].size(); j++)
            {
                dis[V[i][j].first][V[i][j].second]=dp[V[i][j].first][V[i][j].second];
                Q.push(V[i][j]);
            }

            while(!Q.empty())
            {
                pair<int,int>now=Q.front();
                Q.pop();
                pair<int,int>next;
                for(int k=0; k<4; k++)
                {
                    next.first=now.first+dx[k];
                    next.second=now.second+dy[k];
                    if(next.first>n||next.first<1)continue;
                    if(next.second>m||next.second<1)continue;
                    if(dis[next.first][next.second]>dis[now.first][now.second]+1)
                    {
                        dis[next.first][next.second]=dis[now.first][now.second]+1;
                        if(a[next.first][next.second]!=i+1)
                        {
                            Q.push(next);
                        }
                    }
                }
            }
            for(int j=0; j<V[i+1].size(); j++)
            {
                dp[V[i+1][j].first][V[i+1][j].second]=dis[V[i+1][j].first][V[i+1][j].second];
            }
        }
    }
    printf("%d\n",dp[V[p][0].first][V[p][0].second]);
    return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值