• PAT 1018 Public Bike Management


    1018 Public Bike Management

    分数 30

    全屏浏览题目

    切换布局

    作者 CHEN, Yue

    单位 浙江大学

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

    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:

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

    Sample Output:

    3 0->2->3 0

    总结:题目的难度还写不出来,继续加油!

    1. #include
    2. #include
    3. #include
    4. using namespace std;
    5. const int inf = 99999999;
    6. int cmax, n, sp, m;
    7. int minNeed = inf, minBack = inf;
    8. int e[510][510], dis[510], weight[510];
    9. bool visit[510];
    10. vector<int> pre[510], path, temppath;
    11. //dfs的大致流程:
    12. //首先从目标点开始往下走,一直走到点 0,中间的路径用temppath数组存储,
    13. //通过判断back、need、weight之间的关系来确定当前的路径否是最小需求、最小带回的路径
    14. void dfs(int v) {
    15. temppath.push_back(v);
    16. if(v == 0) {
    17. int need = 0, back = 0;
    18. for(int i = temppath.size() - 1; i >= 0; i--) {//从第0个点开始往回走
    19. int id = temppath[i];
    20. if(weight[id] > 0) {//当前车辆大于完美情况,说明有车多需要带回
    21. back += weight[id];
    22. } else {
    23. if(back > (0 - weight[id])) {//0-weight[id],因为weight[id]已经确保是负数了,
    24. //表示当前sation需要车辆,0-weight[id]把负数转化成正数,和back比较,如果back大
    25. //表示从第0个点到当前点,需要带回来的车的数量大于需要带过去的车的数量
    26. back += weight[id];
    27. } else {
    28. need += ((0 - weight[id]) - back);
    29. back = 0;
    30. }
    31. }
    32. }
    33. //路径更新
    34. if(need < minNeed) {
    35. minNeed = need;
    36. minBack = back;
    37. path = temppath;
    38. } else if(need == minNeed && back < minBack) {
    39. minBack = back;
    40. path = temppath;
    41. }
    42. //将最后个一点pop出来
    43. temppath.pop_back();
    44. return ;//返回第0个点的上一个点
    45. }
    46. for(int i = 0; i < pre[v].size(); i++)
    47. dfs(pre[v][i]);//查看当前点是否还有到达下一个点的路径,如果没有的话,就结束循环,最后pop出这个点
    48. temppath.pop_back();
    49. }
    50. int main() {
    51. fill(e[0], e[0] + 510 * 510, inf);
    52. fill(dis, dis + 510, inf);
    53. scanf("%d%d%d%d", &cmax, &n, &sp, &m);
    54. for(int i = 1; i <= n; i++) {
    55. scanf("%d", &weight[i]);
    56. weight[i] = weight[i] - cmax / 2;//整数表示有多的车,负数表示需要车
    57. }
    58. for(int i = 0; i < m; i++) {
    59. int a, b;
    60. scanf("%d%d", &a, &b);
    61. scanf("%d", &e[a][b]);
    62. e[b][a] = e[a][b];
    63. }
    64. dis[0] = 0;
    65. for(int i = 0; i <= n; i++) {
    66. int u = -1, minn = inf;
    67. for(int j = 0; j <= n; j++) {
    68. if(visit[j] == false && dis[j] < minn) {
    69. u = j;
    70. minn = dis[j];
    71. }
    72. }
    73. if(u == -1) break;
    74. visit[u] = true;
    75. for(int v = 0; v <= n; v++) {
    76. if(visit[v] == false && e[u][v] != inf) {
    77. if(dis[v] > dis[u] + e[u][v]) {
    78. dis[v] = dis[u] + e[u][v];
    79. pre[v].clear();//将之前更新的但不是最短的路径去掉,只存最短路径
    80. pre[v].push_back(u);
    81. }else if(dis[v] == dis[u] + e[u][v]) {
    82. pre[v].push_back(u);//路径距离相同都存下来
    83. }
    84. }
    85. }
    86. }
    87. dfs(sp);
    88. printf("%d 0", minNeed);
    89. for(int i = path.size() - 2; i >= 0; i--)
    90. printf("->%d", path[i]);
    91. printf(" %d", minBack);
    92. return 0;
    93. }

     好好学习,天天向上!

    我要考研

  • 相关阅读:
    海康/大华/华为等摄像头或者录像机无法通过GB28181注册到国标平台LiveGBS的问题排查方法...
    【附源码】Python计算机毕业设计民宿短租系统
    【数据结构】二叉搜索树
    Vite项目打包构建优化(视图分析、CDN引入)
    TiDB Dashboard 常见问题
    科研学习|科研软件——SPSS统计的单因素方差分析与单变量方差分析
    javaEE飞机航班信息查询网站系统
    智慧校园数字孪生三维可视化综合解决方案:PPT全83页,附下载
    buildadmin+tp8表格操作(7)表格的事件监听
    Springboot使用定时任务scheduler详解
  • 原文地址:https://blog.csdn.net/weixin_50679551/article/details/126907465