风之羽翼 URAL - 1119

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.
Example
input output
3 2
3
1 1
3 2
1 2
383

首先标记可以走斜边的地方,我用了下标。。。然后寻找符合要求的。
需要注意的是,当double转int有精度问题。

#include <bits/stdc++.h>
using namespace std;
double dp[1001][1002];
int ma[1004][1004];
int main()
{
    memset(ma, 0, sizeof(ma));
    memset(dp, 0, sizeof(dp));
    int n, m;
    cin>>n>>m;
    int k;
    cin>>k;
    while(k--)
    {
        int a, b;
        cin>>a>>b;
        ma[a-1][b-1] = 1;
    }
    for(int i=0;i<=n;i++)
    {
        for(int j=0;j<=m;j++)
        {
            if(i>0&&j>0)
            dp[i][j] = min(dp[i-1][j], dp[i][j-1])+100;
            else if(i>0)
                dp[i][j] = dp[i-1][j] + 100;
            else if(j>0)
                dp[i][j] = dp[i][j-1] + 100;
            if(i>0&&j>0&&ma[i-1][j-1]==1)
            {
                dp[i][j] =dp[i-1][j-1]+sqrt(20000.0);
            //cout<<sqrt(20000.0)<<endl;
            }
        }
    }
    printf("%d\n", (int)(dp[n][m]+0.5));
    return 0;
}

猜你喜欢

转载自blog.csdn.net/feather2016/article/details/79803753