PAT - PAT (Advanced Level) Practise 1018. 공공 자전거 관리 (30) 【 4 성급 】
제목 링크:
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 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
제목 의 대의:
출발점 에서 목표 점 까지 경 로 를 찾 아 이 경로 가 가장 짧 고 이 경로 의 점 의 차 수량 이 모두 정 해진 값 에 이 르 도록 해 야 한다.만약 에 여러 개가 존재 한다 면 원점 에서 운반 해 야 할 차 수가 가장 적은 것 을 찾 아야 한다. 만약 에 여러 개가 존재 한다 면 목표 점 에 도착 한 후에 더 많은 차 가 가장 적은 경 로 를 선택해 야 한다.이곳 은 구덩이 에 빠 져 죽 었 고 우 객 망 의 데 이 터 는 2 층 을 고려 하지 않 았 다.
문제 풀이:
dfs 검색, 목표 지점 에 도착 하 는 비교, 비교 규칙 은 코드 를 참조 하고 업데이트 가 필요 하면 경 로 를 업데이트 합 니 다.
코드:
#include
#include
#include
#include
#define inf 1000000000
using namespace std;
int num[510],tmp[510],path[510];
int mincost,minbike,maxbike;
int s,c,tt;
vector r[510];
int mapp[510][510];
bool vis[510];
int min(int a,int b)
{
return a=c)
{
extr+=num[x]-c;
}
else
{
temp=c-num[x];
if(extr>=temp)
{
extr-=temp;
}
else
{
les+=temp-extr;
extr=0;
}
}
if(x==s)
{
if(costles)
{
minbike=les;
maxbike=extr;
tt=step;
for(int i=0;i<=tt;i++)
path[i]=tmp[i];
}
else if(minbike==les)
{
if(extr%d",path[i]);
printf(" %d
",maxbike);
return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
PAT A1031 Hello World for U(gcc에서 gets()는 error)1031 Hello World for U(20)(20점) Given any string of N (>=5) characters, you are asked to form the characters into the sh...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.