`

HDU 2962 Trucking .

阅读更多

Trucking

Time Limit: 20000/10000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 796    Accepted Submission(s): 268

Problem Description
A certain local trucking company would like to transport some goods on a cargo truck from one place to another. It is desirable to transport as much goods as possible each trip. Unfortunately, one cannot always use the roads in the shortest route: some roads may have obstacles (e.g. bridge overpass, tunnels) which limit heights of the goods transported. Therefore, the company would like to transport as much as possible each trip, and then choose the shortest route that can be used to transport that amount.

For the given cargo truck, maximizing the height of the goods transported is equivalent to maximizing the amount of goods transported. For safety reasons, there is a certain height limit for the cargo truck which cannot be exceeded.
 

 

Input
The input consists of a number of cases. Each case starts with two integers, separated by a space, on a line. These two integers are the number of cities (C) and the number of roads (R). There are at most 1000 cities, numbered from 1. This is followed by R lines each containing the city numbers of the cities connected by that road, the maximum height allowed on that road, and the length of that road. The maximum height for each road is a positive integer, except that a height of -1 indicates that there is no height limit on that road. The length of each road is a positive integer at most 1000. Every road can be travelled in both directions, and there is at most one road connecting each distinct pair of cities. Finally, the last line of each case consists of the start and end city numbers, as well as the height limit (a positive integer) of the cargo truck. The input terminates when C = R = 0.
 

 

Output
For each case, print the case number followed by the maximum height of the cargo truck allowed and the length of the shortest route. Use the format as shown in the sample output. If it is not possible to reach the end city from the start city, print "cannot reach destination" after the case number. Print a blank line between the output of the cases.
 

 

Sample Input
5 6 1 2 7 5 1 3 4 2 2 4 -1 10 2 5 2 4 3 4 10 1 4 5 8 5 1 5 10 5 6 1 2 7 5 1 3 4 2 2 4 -1 10 2 5 2 4 3 4 10 1 4 5 8 5 1 5 4 3 1 1 2 -1 100 1 3 10 0 0
 

 

Sample Output
Case 1: maximum height = 7 length of shortest route = 20 Case 2: maximum height = 4 length of shortest route = 8 Case 3: cannot reach destination
 

 

Source
 

 

Recommend
 
呢个最短路首先要用一次DP求出最高限度,最高限度有D似最大流。
我用左两次最短路,第一次求用Dijkstra最高限度,第二次用SPFA求最短路。
其实求最短路我就系改左Dijkstra内核既松弛技术, 改成求最大流增广路既一种DP。
下面贴代码:
 
4234500 2011-07-21 10:46:35 Accepted 2962 250MS 8092K 2613 B C++ 10SGetEternal{(。)(。)}!
#include<iostream>
#include<queue>
using namespace std;
#define INFI 0x7fffffff
#define MAXI 1001

struct node
{
    int h , w;
} g[MAXI][MAXI];

int v , h , n , dp[MAXI];
bool vis[MAXI];

int Mem_DFS(int s , int minh)
{
    int  i , temph;
    
    if (dp[s] != 0) return dp[s];
    if (s == v) return minh;
    vis[s] = 1;
    
    for (i = 0; i < n; i++)
        if (!vis[i] && !(g[s][i].h == -1 && g[s][i].w == INFI))
        {
            if (g[s][i].h < minh) temph = Mem_DFS(i , g[s][i].h);
            else temph = Mem_DFS(i , minh);
            if (dp[s] < temph) dp[s] = temph;
        }

    vis[s] = 0;

    return dp[s];
}

void Dijkstra(int u , int minh)
{
    int i , j , tmax , temph;

    dp[u] = minh;
    
    for (i = 0; i < n; i++)
    {
        tmax = -11;
        for (j = 0; j < n; j++)
            if (!vis[j] && dp[j] > tmax)
            {
                tmax = dp[j];
                u = j;
            }
        vis[u] = 1;
        for (j = 0; j < n; j++)
            if (!vis[j] && g[u][j].h != -1)
            {
                if (g[u][j].h < dp[u]) temph = g[u][j].h;
                else temph = dp[u];
                if (temph > dp[j]) dp[j] = temph;
            }
    }
}

void SPFA(int u)
{
    int i;

    queue<int> Q;
    Q.push(u);
    vis[u] = 1;
    dp[u] = 0;

    while (!Q.empty())
    {
        u = Q.front();
        Q.pop();
        vis[u] = 0;

        for (i = 0; i < n; i++)
            if (i != u && g[u][i].h >= h && dp[i] - dp[u] > g[u][i].w)
            {
                dp[i] = dp[u] + g[u][i].w;
                if (!vis[i])
                {
                    Q.push(i);
                    vis[i] = 1;
                }
            }
    }

}

int main()
{
    int u , w , m , Case = 0;
    bool ok;
    
    scanf("%d%d" , &n , &m);
    while (n || m)
    {
        ok = 1;
        for (u = 0; u < n; u++)
            for (v = 0; v < n; v++)
            { 
                g[u][v].w = INFI;
                g[u][v].h = -1;
            }
            
        while (m--)
        {
            scanf("%d%d%d%d" , &u , &v , &h , &w);
            u--; v--;
            if (h == -1) h = INFI;
            
            if (g[u][v].h == h)
            {
                if (g[u][v].w > w)
                    g[u][v].w = g[v][u].w = w;
            }
            else if (g[u][v].h < h)
            {
                g[u][v].h = g[v][u].h = h;
                g[u][v].w = g[v][u].w = w;
            }
        }
            
        for (u = 0; u < n; u++) 
        {
            dp[u] = 0;
            vis[u] = 0;
        }
            
        scanf("%d%d%d" , &u , &v , &h);            
        u--; v--;
            
        //dp[v] = Mem_DFS(u , h);

        Dijkstra(u , h);

        if (dp[v] != 0)
        {
            h = dp[v];
            for (w = 0; w < n; w++) 
            {
                dp[w] = INFI;
                vis[w] = 0;
            }

            SPFA(u);

            if (dp[v] != INFI) ok = 1;
        }
        else ok = 0;

        printf("Case %d:\n" , ++Case);

        if (ok)
        {
            printf("maximum height = %d\n" , h);
            printf("length of shortest route = %d\n" , dp[v]);
        }
        else printf("cannot reach destination\n");

        scanf("%d%d" , &n , &m);

        if (n || m) putchar('\n');
    }

    return 0;
}

 其实系水题………………

分享到:
评论

相关推荐

    杭电操作系统实验 HDU操作系统实验.zip

    杭电操作系统实验 HDU操作系统实验.zip杭电操作系统实验 HDU操作系统实验.zip杭电操作系统实验 HDU操作系统实验.zip杭电操作系统实验 HDU操作系统实验.zip杭电操作系统实验 HDU操作系统实验.zip杭电操作系统实验 HDU...

    大学期间操作系统实验-HDU操作系统实验.zip

    HDU操作系统实验.zip大学期间操作系统实验-HDU操作系统实验.zip大学期间操作系统实验-HDU操作系统实验.zip大学期间操作系统实验-HDU操作系统实验.zip大学期间操作系统实验-HDU操作系统实验.zip大学期间操作系统实验-...

    HDU_2010.rar_hdu 2010_hdu 20_hdu acm20

    【标题】"HDU_2010.rar"是一个压缩包文件,其中包含了与"HDU 2010"相关的资源,特别是针对"HDU ACM20"比赛的编程题目。"hdu 2010"和"hdu 20"可能是该比赛的不同简称或分类,而"hdu acm20"可能指的是该赛事的第20届...

    hdu 乒乓 裁判.rar

    标题中的“hdu 乒乓 裁判.rar”暗示了这是一个关于乒乓球裁判知识的压缩文件,可能包含了关于乒乓球比赛规则、裁判工作、器材发展以及赛事组织等方面的信息。描述中的“hdu 乒乓 裁判”进一步确认了主题,表明内容...

    HDU——ACM.zip

    【HDU——ACM.zip】压缩包文件是一个专门为准备ACM(国际大学生程序设计竞赛)集训而设计的资源集合,包含了多个关键算法领域的详细讲解。这个资源包旨在帮助参赛者提升算法理解与编程能力,涵盖了多项在算法竞赛中...

    hdu.rar_HDU 1089.cpp_OJ题求和_hdu_horsekw5_杭电obj

    【标题】"hdu.rar_HDU 1089.cpp_OJ题求和_hdu_horsekw5_杭电obj" 提供的信息是关于一个压缩文件,其中包含了一个名为 "HDU 1089.cpp" 的源代码文件,这个文件是为了解决杭州电子科技大学(Hangzhou Dianzi ...

    hdu_ACM.rar_ACM_hdu_hdu acm_hdu_ACM_杭电ACM

    杭电hdu acm资料所用杭电的acm题

    期末复习自行整理资料分享_HDU-fuxiziyong.zip

    期末复习自行整理资料分享_HDU-fuxiziyong

    杭电期中期末复习资料档案库_HDU_QuickLearner.zip

    杭电期中期末复习资料档案库_HDU_QuickLearner

    ACM HDU题目分类

    ACM HDU 题目分类 ACM HDU 题目分类是指对 HDU 在线判题系统中题目的分类,总结了大约十来个分类。这些分类将有助于编程选手更好地理解和解决问题。 DP 问题 DP(Dynamic Programming,动态规划)是一种非常重要...

    samcat2021#ZXBlog#Hdu - 1711. Number Sequence以及KMP算法总结1

    next[i]的含义是在str[i]之前的字符串str[0...i]中,必须以str[i-1]结尾的后缀子串(不能包含str[0])与必须以str[0]开头的前

    liudongjun-hdu.github.io

    【标题】"liudongjun-hdu.github.io" 指的是一个个人或者组织在GitHub上托管的网页项目,可能是个人博客、技术分享站点或者其他类型的Web应用。这种名称通常是GitHub Pages的格式,其中"liudongjun-hdu"可能是用户或...

    HDU.rar_hdu_hdu07_com_shownv9b_www.563hdu.

    【标题】"HDU.rar_hdu_hdu07_com_shownv9b_www.563hdu." 暗示这是一个与HDU(杭州电子科技大学在线编程平台)相关的压缩包,其中可能包含了该平台上的编程竞赛题目或练习题目的源代码。"hdu07"可能是某个特定题目的...

    hdu5102.zip_K.

    标题中的"hdu5102.zip_K."暗示这是一个与编程竞赛相关的题目,通常在HDU(杭州电子科技大学)在线判题系统中出现。这个题目可能是一个编程挑战,要求参赛者解决一个特定的问题,并提交源代码以供自动评判。"K."可能...

    hdu.rar_hdu

    "hdu.rar_hdu"这个压缩包文件很可能是某位程序员整理的他在HDU上解决过的题目代码集合。这些代码通常包含了对各种算法的应用,例如排序、搜索、图论、动态规划等,对于学习算法和准备编程竞赛的初学者来说是一份宝贵...

    hdu动态规划算法集锦

    题目链接:[Robberies](http://acm.hdu.edu.cn/showproblem.php?pid=2955) - **问题描述**:这是一道典型的0-1背包问题变种,考虑如何最大化抢劫金额,且不会被抓住。 - **解题思路**: - 定义状态$f[j]$表示在第$...

    hdu3398.zip_visual c

    【标题】:“hdu3398.zip_visual c”指的是一个使用Visual C++编写的解决方案,针对HDU(杭州电子科技大学)在线评测系统中的3398号问题。这个压缩包可能包含了完整的源代码、编译配置和其他相关资源,帮助用户理解...

    HDU题库.zip

    HDU题库.zip是一个压缩包文件,包含了从1000到6543号的所有HDU(杭州电子科技大学在线编程平台,也被称为HDU Online Judge)编程竞赛题目。这个资源对于学习算法、提高编程技能以及准备各类编程竞赛的用户来说极其...

    hdu1020.rar_hdu1020

    HDU 1020,又被称为"猜数字",是一个经典的在线算法竞赛题目,源自中国杭州电子科技大学(Hangzhou Dianzi University)的在线评测系统HDU ACM/ICPC。这个题目要求参赛者编写一个程序,模拟一个猜数字的游戏过程,...

Global site tag (gtag.js) - Google Analytics