Public Bike Management(共享单车管理)

https://www.nowcoder.com/pat/5/problem/4324

题目大意:
共享单车管理中心对于每一个车站那,进行管理,完美的状态是只有一半车,如果一个车站是满的或者空的,管理中心就会把那个车站调解成为完美车站,而且所有路过的车站都会被调整.管理中心会选择最短的路径去到达那个站点,不止一条最短路径时,会选择需要最少数量的车的那条路径,
题目描述

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.

image.png

上图为例一,车站为点路为边,为了解决站点3的问题,我们有两种方案,最终选择了从s2->s3因为需要的车辆少.

Figure 1 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.

输入描述:
第一行有四个值:
1.每一个的站点的最大值Cmax(永远是偶数)
2.站点的个数N(不包括PBMC)
3.问题站点的坐标Sp
4.道路的数量M
第二行包含N个非负数,分别代表每一个站点的数量
然后接下来的M行,每一个包括3个数
Si,Sj,Tij,Tij代表从Si到Sj的时间

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 Ci is 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 betwen stations Si and Sj. All the numbers in a line are separated by a space.

首先输出PBMC必须发出的车数量,然后输出路径,然后输出要带回PBMC的数量
如果路径不是唯一的,输出最少的数量需要带回去的.
输出描述:

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.

输入例子:
10 3 3 5
6 7 0
0 1 1
0 2 1
0 3 3
1 3 1
2 3 1
输出例子:
3 0->2->3 0

代码

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.List;

public class Main {
    private static int cmax, n, sp, m;
    private static int costtimes, outbikes, inbikes;
    private static int resulttimes = Integer.MAX_VALUE;
    private static int resultoutbikes, resultinbikes;
    private static int[][] times;
    private static int[] stations;
    private static boolean[] visited;
    private static List<Integer> path = new ArrayList<>();
    private static List<Integer> resultpath;

    public static void main(String[] args) throws IOException {
        BufferedReader buf = new BufferedReader(new InputStreamReader(System.in));
        String[] s = buf.readLine().split(" ");
        cmax = Integer.parseInt(s[0]);
        n = Integer.parseInt(s[1]);
        sp = Integer.parseInt(s[2]);
        m = Integer.parseInt(s[3]);
        stations = new int[n + 1];
        times = new int[n + 1][n + 1];
        visited = new boolean[n + 1];

        s = buf.readLine().split(" ");
        for (int i = 1; i <= n; i++) {
            stations[i] = Integer.parseInt(s[i - 1]);
        }

        for (int i = 1; i <= m; i++) {
            s = buf.readLine().split(" ");
            int a = Integer.parseInt(s[0]);
            int b = Integer.parseInt(s[1]);
            int d = Integer.parseInt(s[2]);
            times[a][b] = d;
            times[b][a] = d;
        }
        dfs(0, 0, sp);
        System.out.print(resultoutbikes + " " + "0");
        for (int i = 1; i < resultpath.size(); i++) {
            System.out.print("->" + resultpath.get(i));
        }
        System.out.println(" " + resultinbikes);
    }

    private static void dfs(int start, int index, int end) {
        visited[index] = true;
        path.add(index);
        costtimes += times[start][index];

        if (index == end) {
            inbikes = 0;
            outbikes = 0;
            for (int i = 1; i < path.size(); i++) {
                if (stations[path.get(i)] > cmax / 2) {
                    inbikes += stations[path.get(i)] - cmax / 2;
                } else if (cmax / 2 - stations[path.get(i)] - inbikes <= 0) {
                    inbikes -= cmax / 2 - stations[path.get(i)];
                } else {
                    outbikes += cmax / 2 - stations[path.get(i)] - inbikes;
                    inbikes = 0;
                }
            }
            if (costtimes == resulttimes) {
                //首先保证发出来的数量要最少,如果发出来的数量大,即使inbikes小,也不管它
                if (outbikes != resultoutbikes) {
                    if (outbikes<resultoutbikes) {
                        resultpath = new ArrayList<>(path);
                        resultoutbikes = outbikes;
                        resultinbikes = inbikes;
                    }
                } else if (inbikes < resultinbikes) {
                    resultpath = new ArrayList<>(path);
                    resultinbikes = inbikes;
                }
            } else if (costtimes < resulttimes) {
                resultpath = new ArrayList<>(path);
                resulttimes = costtimes;
                resultinbikes = inbikes;
                resultoutbikes = outbikes;
            }
        } else {
            for (int i = 1; i <= n; i++) {
                if (times[index][i] != 0 && !visited[i]) {
                    dfs(index, i, end);
                }
            }
        }
        path.remove(path.size() - 1);
        visited[index] = false;
        costtimes -= times[start][index];
    }
}
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念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

推荐阅读更多精彩内容