[PAT]A1018(Public Bike Management)踩坑及解题思路

原题回顾

PAT_A1018原文链接

1018 Public Bike Management (30分)

作者: CHEN, Yue
单位: 浙江大学
时间限制: 400 ms
内存限制: 64 MB
代码长度限制: 16 KB

There is a public bike service in Hangzhou City which provides great convenience to the tourists from all over the world. One may rent a bike at any station and return it to any other stations in the city.
The Public Bike Management Center (PBMC) keeps monitoring the real-time capacity of all the stations. A station is said to be in perfect condition if it is exactly half-full. If a station is full or empty, PBMC will collect or send bikes to adjust the condition of that station to perfect. And more, all the stations on the way will be adjusted as well.
When a problem station is reported, PBMC will always choose the shortest path to reach that station. If there are more than one shortest path, the one that requires the least number of bikes sent from PBMC will be chosen.


The above figure illustrates an example. The stations are represented by vertices and the roads correspond to the edges. The number on an edge is the time taken to reach one end station from another. The number written inside a vertex S is the current number of bikes stored at S. Given that the maximum capacity of each station is 10. To solve the problem at S3, we have 2 different shortest paths:
1.PBMC -> S1 -> S3. In this case, 4 bikes must be sent from PBMC, because we can collect 1 bike from S1 and then take 5 bikes to S3, so that both stations will be in perfect conditions.
2.PBMC -> S2 -> S3. This path requires the same time as path 1, but only 3 bikes sent from PBMC and hence is the one that will be chosen.

Input Specification:

Each input file contains one test case. For each case, the first line contains 4 numbers: Cmax(≤100), always an even number, is the maximum capacity of each station; N (≤500), the total number of stations; Sp, the index of the problem station (the stations are numbered from 1 to N, and PBMC is represented by the vertex 0); and M, the number of roads. The second line contains N non-negative numbers Ci(i=1,⋯,N) where each Ciis the current number of bikes at Si respectively. Then M lines follow, each contains 3 numbers: Si, Sj, and Tij which describe the time Tij taken to move between stations Si and Sj. All the numbers in a line are separated by a space.

Output Specification:

For each test case, print your results in one line. First output the number of bikes that PBMC must send. Then after one space, output the path in the format: 0−>S1->...->Sp. Finally after another space, output the number of bikes that we must take back to PBMC after the condition of Sp is adjusted to perfect.
Note that if such a path is not unique, output the one that requires minimum number of bikes that we must take back to PBMC. The judge's data guarantee that such a path is unique.

Sample Input:

10 3 3 5
6 7 0
0 1 1
0 2 1
0 3 3
1 3 1
2 3 1

Sample Output:

3 0->2->3 0

解题思路及注意点

  • 第一遍做时立马就选择了用Dijkstra算法解决诸如此类最短路径类问题(曾自学过算法笔记,对此印象比较深刻),但是有一个问题是无法在路径中确定最优解,只能把所有最短路径确定后,再去选择其中最优的一条,所以必须在其中穿插DFS算法,根据前驱结点递归来得到所有路径。
  • 我对题目的第一个误解是认为从PBMC要么是往外带,要么是往回带,总之不会即带出又带回,这样显然多此一举,按照这样的思路写出代码后发现有两个测试点未通过,于是又重新读了几遍题目,并经过几次不断尝试修改代码(其实就是DFS部分),最后发现题目的设定是这样的:假如路径为 A->B->C->D,如果在B点发现车辆不够,需要补充,那么就必须要从始发地A多带出缺少的车辆,无论此时C和D是什么状态,即使C、D全部爆满,也与A没有关系,可以理解为一直向前走不回头,所以,如果目的地的车辆大于满载的一半,那么无论前面的地点缺多少辆车,总会把目的地多余的车辆直接送回总部,与路径上的所有点无关。 于是将代码的DFS部分修改后顺利通过了所有测试点。

代码部分

#include <cstdio>
#include <algorithm>
#include <vector>
using namespace std;
const int maxn = 1010;
const int INF = 0x3fffffff;

int c, n, ed, m; //最大容量,顶点数,目的地,边数
int G[maxn][maxn], d[maxn], weight[maxn]; //邻接矩阵,最短路径,点权
vector<int> pre[maxn]; //前驱结点
vector<int> tempPath, Path; //当前路径,最优路径
bool vis[maxn]; //是否访问过
int minOut = INF, minBack = INF; //优化结果

void Dijkstra(int s) //标准Dijkstra算法
{
    fill(d, d + maxn, INF);
    d[s] = 0;
    for (int i = 0; i <= n; i++) //因为加上了顶点,所以一共循环n+1次,每次都找到距离最短的点
    {
        int u = -1, MIN = INF; //u使d[u]最短
        for (int j = 0; j <= n; j++)
        {
            if (vis[j] == false && d[j] < MIN)
            {
                u = j;
                MIN = d[j];
            }
        }
        if (u == -1) //找不到可达点,说明搜索完毕
            return;
        vis[u] = true; //已访问
        for (int v = 0; v <= n; v++)
        {
            if (vis[v] == false && G[u][v] != INF) //未访问过且可到达
            {
                if (d[u] + G[u][v] < d[v])
                {
                    d[v] = d[u] + G[u][v];
                    pre[v].clear();
                    pre[v].push_back(u);
                }
                else if (d[u] + G[u][v] == d[v])
                {
                    pre[v].push_back(u);
                }
            }
        }
    }
}

void DFS(int v)
{
    if (v == 0)
    {
        tempPath.push_back(v);
        int Out = 0, Back = 0; //需要带出的车辆数目,需要带回的车辆数目
        int take = 0; //路上搜集到的自行车数目
        for (int i = tempPath.size() - 1; i >= 0; i--)
        {
            int id = tempPath[i];
            if (weight[id] > (c / 2)) //超过一半,加入收集量
                take += weight[id] - (c / 2);
            if (weight[id] < (c / 2))
                take -= (c / 2) - weight[id]; //不足一半,用搜集量去弥补,不够的话take变为负值
            if (take < 0) // 一旦take为负说明从起点到目前的结点需要从基地带出才够
            {
                Out += abs(take); //带出的车辆累加
                take = 0; //从基地带出车辆弥补负值的take,take置0
            }
        }
        if (take > 0) //到目的地后全部补充完毕仍有多余车辆
            Back = take; //带回
        else
            Back = 0; // take<=0说明不足或刚好够,不用带回
        if (Out < minOut) //优化Out
        {
            Path = tempPath;
            minOut = Out;
            minBack = Back;
        }
        else if (Out == minOut && Back < minBack)
        {
            Path = tempPath;
            minOut = Out;
            minBack = Back;
        }
        tempPath.pop_back();
        return;
    }
    tempPath.push_back(v);
    for (int i = 0; i < pre[v].size(); i++)
    {
        DFS(pre[v][i]);
    }
    tempPath.pop_back();
}

int main()
{
    fill(G[0], G[0] + maxn * maxn, INF); //初始所有结点之间均不可达
    scanf("%d%d%d%d", &c, &n, &ed, &m);
    for (int i = 1; i <= n; i++)
    {
        scanf("%d", &weight[i]);
    }
    weight[0] = c / 2;
    int u, v;
    for (int i = 0; i < m; i++)
    {
        scanf("%d%d", &u, &v);
        scanf("%d", &G[u][v]);
        G[v][u] = G[u][v];
    }
    Dijkstra(0);
    DFS(ed);
    printf("%d ", minOut);
    for (int i = Path.size() - 1; i >= 0; i--)
    {
        printf("%d", Path[i]);
        if (i != 0)
            printf("->");
    }
    printf(" %d\n", minBack);
    return 0;
}

跨专业数据结构初学者,疏漏在所难免,欢迎指正~

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 200,738评论 5 472
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 84,377评论 2 377
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 147,774评论 0 333
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,032评论 1 272
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,015评论 5 361
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,239评论 1 278
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,724评论 3 393
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,374评论 0 255
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,508评论 1 294
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,410评论 2 317
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,457评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,132评论 3 316
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,733评论 3 303
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,804评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,022评论 1 255
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,515评论 2 346
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,116评论 2 341

推荐阅读更多精彩内容