PAT甲级1018

来源:互联网 发布:大学生网络课程答案 编辑:程序博客网 时间:2024/05/17 00:11

1018. Public Bike Management (30)

时间限制
400 ms
内存限制
65536 kB
代码长度限制
16000 B
判题程序
Standard
作者
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.


Figure 1

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.

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 Spis 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 56 7 00 1 10 2 10 3 31 3 12 3 1
Sample Output:
3 0->2->3 0

#include<cstdio>#include<vector>#include<algorithm>#include<queue>using namespace std;const int maxn = 510;const int INF = 1000000000;int Cmax, N, Sp, M;int bikes[maxn];struct Node{int v, dis;}node;vector<Node> Adj[maxn];int d[maxn];bool vis[maxn];vector<int> pre[maxn];//采用Dijkstra+DFS来解决此问题struct compare{bool operator()(Node n1, Node n2){return n1.dis > n2.dis;}};void Dijkstra(int s){fill(vis, vis + maxn, false);fill(d, d + maxn, INF);d[s] = 0;priority_queue<Node, vector<Node>, compare> Q;//堆优化node.v = s; node.dis = d[s];Q.push(node);int u;for (int i = 0; i <=N; i++){if (!Q.empty()){u = Q.top().v;vis[u] = true;Q.pop();}elsereturn;for (int i = 0; i <Adj[u].size(); i++){int v = Adj[u][i].v;int dis = Adj[u][i].dis;if (!vis[v]){if (d[u] + dis < d[v]){d[v] = d[u] + dis;pre[v].clear();pre[v].push_back(u);node.v = v; node.dis = d[v];Q.push(node);}else if (d[u] + dis == d[v]){pre[v].push_back(u);}}}}}//先把所有的最短路径找到再说int optneed = INF,optremain = INF;//第二标尺最优值vector<int> path, tempPath;//最优路径、临时路径int start = 0;void DFS(int v){if (v == start){tempPath.push_back(v);int value = 0;int need = 0;int remain = 0;for (int i = tempPath.size()-1; i>=0; i--){int station = tempPath[i];//这里注意下int t = bikes[station] - Cmax / 2;if (t > 0)remain += t;else{if (remain > abs(t))remain -= abs(t);else{need += abs(t) - remain;remain = 0;}}}//沿路径一路检测自行车是多了还是少了,跟加油站问题类似if (need < optneed){optneed = need;path = tempPath;optremain = remain;//这里注意把optremain也要修改一下}else if(need==optneed)//注意remain不为0时,need不一定为0,例如路径为0->1->2//1号站需要3辆车,2号站多出来4辆车,但是从PBMC出发时不走回头路,也就是说2号站//多出来的不能往回走用这4辆车去补,而是仍要从PBMC带3辆车,最后剩余4辆车{if (remain < optremain){optremain = remain;path = tempPath;}}tempPath.pop_back();return;}tempPath.push_back(v);for (int i = 0; i < pre[v].size(); i++){DFS(pre[v][i]);}tempPath.pop_back();}void PrintPath(){for (int i = path.size()-1; i>=0; i--){printf("%d", path[i]);if (i > 0)printf("->");}}int main(){scanf("%d%d%d%d", &Cmax, &N, &Sp, &M);bikes[0] = Cmax/2;for (int i = 1; i <= N; i++){scanf("%d", &bikes[i]);}int Si, Sj, Tij;for (int i = 0; i < M; i++){scanf("%d%d%d", &Si, &Sj, &Tij);node.v = Sj; node.dis = Tij;Adj[Si].push_back(node);node.v = Si;Adj[Sj].push_back(node);}Dijkstra(0);DFS(Sp);printf("%d ", optneed);PrintPath();printf(" %d\n", optremain);return 0;}

0 0
原创粉丝点击