Pat1018代码

题目描写叙述:

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

AC代码:题目的意思是找路径最短的线路,假设相等则找带来自行车最少的线路,假设再相等则找带走自行车最少的线路;思路,Dijkstra+DFS,本来以为一遍Dijkstra就能够解决的,写到一半时发现。不到目的地根本没法选择路径;由于在选择最短路径的同一时候。还要使须要的自行车数目最少,以及剩余的自行车数目最少,用DSF就能够搞定。

#include<cstdio>
#include<stack>
#include<algorithm>
#define MAX 505
#define INF 0x0FFFFFFF using namespace std; int map[MAX][MAX];
int Station[MAX];
int visited[MAX],Length[MAX];
int FinalPath[MAX],TempPath[MAX];//Path
int flag[MAX][MAX];//DFS flag
int c,n,s,m;
int takein=INF,takeout=INF;//takein to a station,takeout from a station
int finished;//finish flag
int shortdis;//the shortest distance from PBMC to station s
int nowstep,finalstep; void Init(int n)
{
int i,j;
for(i=0;i<=n;i++)
{
Length[i]=INF;
for(j=0;j<=n;j++)
map[i][j]=INF;
}
} void Dijkstra(int n,int d)//计算最短路径
{
int min=INF;
int i,j,k;
int num;
for(i=0;i<=n;i++)
{
Length[i]=map[0][i];
visited[i]=0;
}
Length[0]=0;
visited[0]=1;
for(i=1;i<=n;i++)
{
min=INF;
for(j=0;j<=n;j++)
{
if(!visited[j]&&Length[j]<min)
{
min=Length[j];
k=j;
}
}
visited[k]=1;
for(j=0;j<=n;j++)
{
if(!visited[j]&&Length[j]>min+map[k][j])
{
Length[j]=min+map[k][j];
}
}
}
shortdis=Length[d];
} void Compute()//计算从PBMC到该站须要带来和带走多少辆自行车
{
int in=INF,out=INF;
int i;
int sum=0;
for(i=1;i<=nowstep;i++)
{
sum+=Station[TempPath[i]]-c/2;
if(sum<in)//in表示的是从PBMC到该站的路径时要达到最佳状态须要带来
in=sum; //的自行车数目
}
if(in>0)//不须要带来自行车
in=0;
else
in=-in;
out=sum+in;//须要带出自行车
if(in<takein||(in==takein&&out<takeout))
{
takein=in;
takeout=out;
if(takein==0&&takeout==0)
finished=1;
finalstep=nowstep;
for(i=1;i<=nowstep;i++)//拷贝路径
FinalPath[i]=TempPath[i];
}
} void DFS(int step,int start,int len)
{
int j;
if(finished==1||len>Length[start])
return;
if(len==shortdis&&start==s)
{
nowstep=step;
Compute();
}
for(j=1;j<=n;j++)
{
if(flag[start][j]==1||map[j][start]==INF)
continue;
flag[start][j]=flag[j][start]=1;
TempPath[step+1]=j;
DFS(step+1,j,len+map[start][j]);
flag[start][j]=flag[j][start]=0;
}
} void Display()
{
int i;
printf("%d 0",takein);
for(i=1;i<=finalstep;i++)
printf("->%d",FinalPath[i]);
printf(" %d\n",takeout);
} int main(int argc,char *argv[])
{
int i;
scanf("%d%d%d%d",&c,&n,&s,&m);
Init(n);
for(i=1;i<=n;i++)
scanf("%d",&Station[i]);
for(i=0;i<m;i++)
{
int x,y,len;
scanf("%d%d%d",&x,&y,&len);
map[x][y]=len;
map[y][x]=len;
}
Dijkstra(n,s);
DFS(0,0,0);
Display();
return 0;
}

Pat(Advanced Level)Practice--1018(Public Bike Management)的更多相关文章

  1. PAT 1018 Public Bike Management[难]

    链接:https://www.nowcoder.com/questionTerminal/4b20ed271e864f06ab77a984e71c090f来源:牛客网PAT 1018  Public ...

  2. PAT甲级1018. Public Bike Management

    PAT甲级1018. Public Bike Management 题意: 杭州市有公共自行车服务,为世界各地的游客提供了极大的便利.人们可以在任何一个车站租一辆自行车,并将其送回城市的任何其他车站. ...

  3. PAT 1018 Public Bike Management(Dijkstra 最短路)

    1018. Public Bike Management (30) 时间限制 400 ms 内存限制 65536 kB 代码长度限制 16000 B 判题程序 Standard 作者 CHEN, Yu ...

  4. PAT 甲级 1018 Public Bike Management (30 分)(dijstra+dfs,dfs记录路径,做了两天)

    1018 Public Bike Management (30 分)   There is a public bike service in Hangzhou City which provides ...

  5. PAT (Advanced Level) Practice(更新中)

    Source: PAT (Advanced Level) Practice Reference: [1]胡凡,曾磊.算法笔记[M].机械工业出版社.2016.7 Outline: 基础数据结构: 线性 ...

  6. PAT (Advanced Level) Practice 1001-1005

    PAT (Advanced Level) Practice 1001-1005 PAT 计算机程序设计能力考试 甲级 练习题 题库:PTA拼题A官网 背景 这是浙大背景的一个计算机考试 刷刷题练练手 ...

  7. PAT (Advanced Level) Practice 1046 Shortest Distance (20 分) 凌宸1642

    PAT (Advanced Level) Practice 1046 Shortest Distance (20 分) 凌宸1642 题目描述: The task is really simple: ...

  8. PAT (Advanced Level) Practice 1042 Shuffling Machine (20 分) 凌宸1642

    PAT (Advanced Level) Practice 1042 Shuffling Machine (20 分) 凌宸1642 题目描述: Shuffling is a procedure us ...

  9. PAT (Advanced Level) Practice 1041 Be Unique (20 分) 凌宸1642

    PAT (Advanced Level) Practice 1041 Be Unique (20 分) 凌宸1642 题目描述: Being unique is so important to peo ...

  10. PAT (Advanced Level) Practice 1035 Password (20 分) 凌宸1642

    PAT (Advanced Level) Practice 1035 Password (20 分) 凌宸1642 题目描述: To prepare for PAT, the judge someti ...

随机推荐

  1. Cassandra 数据库安装部署

    安装版本 cassandra-3.11.4 系统版本 more /etc/redhat-release CentOS Linux release 7.6.1810 (Core) 准备工作 Cassan ...

  2. Ubuntu 14.04在虚拟机上的桥接模式下设置静态IP

    1.虚拟机--->虚拟机设置 将虚拟机设置为桥接模式 2.查看window 网卡以及IP信息 cmd下输入 ipconfig -all 可以看到,我的网卡为Realtek PCIe GBE Fa ...

  3. Ubuntu桌面主题设置以及优化

    安装好Ubuntu后,觉得桌面不太美观,便动了修改主题的想法.听说Flatabulous不错,在网上搜索看过主题效果后也觉得蛮不错的,于是准备修改. 安装Unity Tweak Tool Unity ...

  4. PAT Basic 1018

    1018 锤子剪刀布 大家应该都会玩“锤子剪刀布”的游戏:两人同时给出手势,胜负规则如图所示: 现给出两人的交锋记录,请统计双方的胜.平.负次数,并且给出双方分别出什么手势的胜算最大. 输入格式: 输 ...

  5. 【总集】C++ STL类库 vector 使用方法

    介绍: 1.vector 的中文名为向量,可以理解为一个序列容器,里面存放的是相同的数据结构类型,类似于数组但与数组又有微妙的不同. 2.vector 采用的是连续动态的空间来存储数据,它是动态的数组 ...

  6. Python之Regular Expressions(正则表达式)

    在编写处理字符串的程序或网页时,经常会有查找符合某些复杂规则的字符串的需要.正则表达式就是用于描述这些规则的工具.换句话说,正则表达式就是记录文本规则的代码. 很可能你使用过Windows/Dos下用 ...

  7. VM上完美运行macos

    VM上完美运行macos 作者:方辰昱 时间:十月三号 效果图 简要步骤 下载安装VM 下载镜像文件链接,darwin.iso,unlocker,beamoff.合集下载链接:https://pan. ...

  8. BZOJ 3130 [Sdoi2013]费用流 ——网络流

    [题目分析] 很容易想到,可以把P放在流量最大的边上的时候最优. 所以二分网络流,判断什么时候可以达到最大流. 流量不一定是整数,所以需要实数二分,整数是会WA的. [代码] #include < ...

  9. 洛谷P1447 - [NOI2010]能量采集

    Portal Description 给出\(n,m(n,m\leq10^5),\)计算\[ \sum_{i=1}^n \sum_{j=1}^m (2gcd(i,j)-1)\] Solution 简单 ...

  10. oracle查询正在执行的语句以及正被锁的对象

    --查询Oracle正在执行的sql语句及执行该语句的用户 b.username 登录Oracle用户名, b.serial#, spid 操作系统ID,         paddr,        ...