码迷,mamicode.com
首页 > 其他好文 > 详细

1018 Public Bike Management (30分)

时间:2020-01-22 18:20:53      阅读:96      评论:0      收藏:0      [点我收藏+]

标签:second   collect   perfect   empty   keep   real   tor   存在   ann   

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 S?3??, we have 2 different shortest paths:

  1. PBMC -> S?1?? -> S?3??. In this case, 4 bikes must be sent from PBMC, because we can collect 1 bike from S?1?? and then take 5 bikes to S?3??, so that both stations will be in perfect conditions.

  2. PBMC -> S?2?? -> S?3??. 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: C?max?? (≤), always an even number, is the maximum capacity of each station; N (≤), the total number of stations; S?p??, 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 C?i?? (,) where each C?i?? is the current number of bikes at S?i?? respectively. Then M lines follow, each contains 3 numbers: S?i??, S?j??, and T?ij?? which describe the time T?ij?? taken to move betwen stations S?i?? and S?j??. 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. Finally after another space, output the number of bikes that we must take back to PBMC after the condition of S?p?? 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

解题思路:先用迪杰斯特拉找到所有的最短路径,并且保存在vector中,然后再用dfs根据题目中所给的条件找到最好的选择

Note:看题解的时候发现大佬说,题目数据规模小,所以才会导致大家认为正确的答案是dfs,其实是dp

AC代码:
  1 #include <cstdio>
  2 #include <vector>
  3 #include <algorithm>
  4 #define INF 0x3f3f3f3f
  5 using namespace std;
  6 
  7 const int N = 505;
  8 int n,m;
  9 int a[N][N];
 10 int bestin,bestout;
 11 int b[N],dis[N],vis[N];
 12 vector<int>pre[N],answer;
 13 
 14 void Init(){
 15     for(int i=0;i<=n;i++)
 16         for(int j=0;j<=n;j++)
 17             a[i][j]=INF;
 18 }
 19 void dij(){
 20     for(int i=0;i<=n;i++)
 21         dis[i]=a[0][i];
 22     dis[0]=0;
 23 
 24     int k,minn;
 25     for(int i=0;i<=n;i++){
 26         minn=INF;
 27         for(int j=0;j<=n;j++){
 28             if(!vis[j] && dis[j]<minn){
 29                 k=j;
 30                 minn=dis[j];
 31             }
 32         }
 33         vis[k]=1;
 34         int temp;
 35         for(int j=0;j<=n;j++){
 36             if(!vis[j] && a[k][j]<INF){
 37                 temp=minn+a[k][j];
 38                 if(temp<dis[j]){
 39                     dis[j]=temp;
 40                     pre[j].resize(1);
 41                     pre[j][0] = k;
 42                 }else if(temp==dis[j]){
 43                     pre[j].push_back(k);
 44                 }
 45             }
 46         }
 47     }
 48 }
 49 void dfs(int now,int myin,int myou,vector<int>&path){
 50     path.push_back(now);
 51     if(now==0){
 52         if((myin<bestin)||((myin == bestin) &&(myou < bestout))){
 53             bestin = myin;
 54             bestout = myou;
 55             answer = path;
 56         }
 57         path.pop_back();
 58         return;
 59     }
 60     if(b[now] >= m){
 61         myin-=(b[now]-m);
 62         if(myin<0){
 63             myou-=myin;
 64             myin=0;
 65         }
 66     }
 67     else{
 68         myin+=m-b[now];
 69     }
 70     for(int i=0;i<pre[now].size();++i){
 71         dfs(pre[now][i],myin,myou,path);
 72     }
 73     path.pop_back();
 74 }
 75 
 76 int main(void)
 77 {
 78     int to,p;
 79     scanf("%d%d%d%d",&m,&n,&to,&p);
 80     for(int i=1;i<=n;i++)
 81         scanf("%d",&b[i]);
 82     Init();
 83     int x,y,t;
 84     while(p--){
 85         scanf("%d%d%d",&x,&y,&t);
 86         a[x][y]=a[y][x]=min(a[x][y],t);
 87     }
 88 
 89     dij();
 90     m>>=1;
 91     vector<int>path;
 92     bestin=bestout=INF;
 93     dfs(to,0,0,path);
 94 
 95     printf("%d ",bestin);
 96     reverse(answer.begin(),answer.end());
 97     for(int i=0;i<answer.size();++i){
 98         if(i)
 99             printf("->");
100         printf("%d",answer[i]);
101     }
102     printf(" %d\n",bestout);
103 
104     return 0;
105 }

 

 

1018 Public Bike Management (30分)

标签:second   collect   perfect   empty   keep   real   tor   存在   ann   

原文地址:https://www.cnblogs.com/gn1314/p/12228852.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!