zoukankan      html  css  js  c++  java
  • 1018. Public Bike Management (30)

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

    题目大意:求最短路径数,最短路径有多条时,凭借从PBMC中拿出车辆数为排序标准,当拿出的车辆数相同时,再已送回车辆数少的排序。
    本题初看要记录路径,这就不好下手了。看了下别人的代码,用vector记录路径,配合上DFS来解。

    #include<iostream>
    #include<cstring>
    #include<algorithm>
    #include<vector>
    #include<cstdio>
    using namespace std;
    #define max 502
    #define INF 10000
    int map[max][max];
    int visit[max],a_bike[max];
    int c_max,n,s_p,m;
    int min_time = INF,min_send_bike = INF;
    int min_back_bike = INF;
    vector<int>shortpath;
    vector<int>currentpath;
    int current_time=0;
    int cur_send_bike=0,cur_back_bike=0;
    int N;
    int c_p;
    void DFS(int s){
    	if(current_time > min_time) return;
    	if(s == s_p){
    		if(current_time<min_time){
    			min_time = current_time;
    			min_send_bike = cur_send_bike;
    			min_back_bike = cur_back_bike;
    			shortpath = currentpath;
    			//cout<<min_send_bike<<endl;
    		}
    		else if(current_time == min_time){
    			if(min_send_bike > cur_send_bike ||(min_send_bike == cur_send_bike&&min_back_bike>cur_back_bike)){
    				min_send_bike = cur_send_bike;
    				min_back_bike = cur_back_bike;
    				shortpath = currentpath;
    			}
    		}
    		return ;
    	}
    	int i;
    	for(i=1;i<N;i++){
    		if(visit[i]==0 && map[s][i]!=INF){
    			int send = cur_send_bike;
    			int back = cur_back_bike;
    			if(cur_back_bike+a_bike[i]<c_p){
    				cur_send_bike += c_p - cur_back_bike-a_bike[i];
    				cur_back_bike=0;
    			}else{
    				cur_back_bike=cur_back_bike+a_bike[i]-c_p;				
    			}
    			//cout<<cur_back_bike<<" "<<cur_send_bike<<" "<<c_p<<endl;
    			visit[i]=1;
    			currentpath.push_back(i);
    			current_time += map[s][i];
    			DFS(i);
    			current_time -= map[s][i];
    			cur_send_bike = send;
    			cur_back_bike = back;
    			currentpath.pop_back();
    			visit[i]=0;
    		}
    	}
    }
    int main(){
    	memset(visit,0,sizeof(visit));
    	memset(a_bike,0,sizeof(a_bike));
    	int i,j;
    	scanf("%d%d%d%d",&c_max,&n,&s_p,&m);
    	N = n+1;
    	c_p = c_max/2;
    	for(i=1;i<N;i++){
    		scanf("%d",&a_bike[i]);
    	}
    	for(i=0;i<N;i++){
    		for(j=0;j<N;j++){
    			map[i][j]=INF;
    			map[j][i]=INF;
    		}
    	}
    	for(i=0;i<m;i++){
    		int s_i,s_j,t_ij;
    		scanf("%d%d%d",&s_i,&s_j,&t_ij);
    		map[s_i][s_j] = t_ij;
    		map[s_j][s_i] = t_ij;
    	}
    	DFS(0);
    	printf("%d 0",min_send_bike);
    	for(i=0;i<shortpath.size();i++){
    		printf("->%d",shortpath[i]);
    	}
    	printf(" %d
    ",min_back_bike);
    	return 0;
    }
    

      

  • 相关阅读:
    Matlab随笔之三维图形绘制
    Matlab随笔之模拟退火算法
    Matlab随笔之矩阵入门知识
    Matlab随笔之求解线性方程
    Matlab随笔之分段线性函数化为线性规划
    Matlab随笔之指派问题的整数规划
    Matlab随笔之线性规划
    Android单位转换 (px、dp、sp之间的转换工具类)
    Android禁止输入表情符号
    设计模式之策略模式
  • 原文地址:https://www.cnblogs.com/grglym/p/7667553.html
Copyright © 2011-2022 走看看