Metro-Ural119递推

Many of SKB Kontur programmers like to get to work by Metro because the main office is situated quite close the station Uralmash. So, since a sedentary life requires active exercises off-duty, many of the staff — Nikifor among them — walk from their homes to Metro stations on foot.
这里写图片描述
Problem illustration
Nikifor lives in a part of our city where streets form a grid of residential quarters. All the quarters are squares with side 100 meters. A Metro entrance is situated at one of the crossroads. Nikifor starts his way from another crossroad which is south and west of the Metro entrance. Naturally, Nikifor, starting from his home, walks along the streets leading either to the north or to the east. On his way he may cross some quarters diagonally from their south-western corners to the north-eastern ones. Thus, some of the routes are shorter than others. Nikifor wonders, how long is the shortest route.
You are to write a program that will calculate the length of the shortest route from the south-western corner of the grid to the north-eastern one.

Input

There are two integers in the first line: N and M (0 < N,M ≤ 1000) — west-east and south-north sizes of the grid. Nikifor starts his way from a crossroad which is situated south-west of the quarter with coordinates (1, 1). A Metro station is situated north-east of the quarter with coordinates (N, M). The second input line contains a number K (0 ≤ K ≤ 100) which is a number of quarters that can be crossed diagonally. Then K lines with pairs of numbers separated with a space follow — these are the coordinates of those quarters.
Output
Your program is to output a length of the shortest route from Nikifor’s home to the Metro station in meters, rounded to the integer amount of meters.

Sample

input
3 2
3
1 1
3 2
1 2
output
383

Problem Author:

Leonid Volkov

Problem Source:

USU Open Collegiate Programming Contest October’2001 Junior Session

对于图中的某一点ij,则Dp[i][j]表示从(0,0)到(i,j)的最短距离。所以对于(i,j)可以到达他的点为(i-1,j)(i,j-1)和(i-1,j-1)(如果可以),所以可以从下到上,从左到右推过去。

#include <cstdio>
#include <cstring>
#include <cstdlib>
#include <cmath>
#include <string>
#include <queue>
#include <stack>
#include <vector>
#include <iostream>
#include <algorithm>

using namespace std;

const int INF = 0x3f3f3f3f;

const int Max = 1010;

const double len = 100*sqrt(2);

double Dp[Max][Max];

bool Map[Max][Max];

int n,m;

void Init()
{
    for(int i=0;i<=n;i++)
    {
        for(int j=0;j<=m;j++)
        {
            Map[i][j]=false;

            Dp[i][j] = INF;
        }
    }
}

bool Judge(int x,int y)
{
    if(x<=n&&y<=m)
    {
        return true;
    }
    return false;
}

int main()
{
    int num;

    int u,v;

    while(~scanf("%d %d",&m,&n))
    {
        Init();

        scanf("%d",&num);

        while(num--)
        {
            scanf("%d %d",&u,&v);

            Map[v-1][u-1] = true;

        }
        Dp[0][0]=0;
        for(int i=0;i<=n;i++)
        {
            for(int j=0;j<=m;j++)
            {
                if(Judge(i+1,j))
                {
                    Dp[i+1][j]=  min(Dp[i+1][j],Dp[i][j]+100);
                }
                if(Judge(i,j+1))
                {
                    Dp[i][j+1] = min(Dp[i][j+1],Dp[i][j]+100);
                }
                if(Map[i][j]&&Judge(i+1,j+1))
                {
                    Dp[i+1][j+1]=min(Dp[i+1][j+1],Dp[i][j]+len);
                }
            }
        }

        printf("%.0f\n",Dp[n][m]);
    }
    return 0;
}

转载于:https://www.cnblogs.com/juechen/p/5255867.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值