PAT 1033 To Fill or Not to Fill[dp]

时间:2022-09-04 18:10:59
1033 To Fill or Not to Fill(25 分)

With highways available, driving a car from Hangzhou to any other city is easy. But since the tank capacity of a car is limited, we have to find gas stations on the way from time to time. Different gas station may give different price. You are asked to carefully design the cheapest route to go.

Input Specification:

Each input file contains one test case. For each case, the first line contains 4 positive numbers: C​max​​ (≤ 100), the maximum capacity of the tank; D (≤30000), the distance between Hangzhou and the destination city; D​avg​​ (≤20), the average distance per unit gas that the car can run; and N (≤ 500), the total number of gas stations. Then N lines follow, each contains a pair of non-negative numbers: P​i​​, the unit gas price, and D​i​​ (≤D), the distance between this station and Hangzhou, for i=1,⋯,N. All the numbers in a line are separated by a space.

Output Specification:

For each test case, print the cheapest price in a line, accurate up to 2 decimal places. It is assumed that the tank is empty at the beginning. If it is impossible to reach the destination, print The maximum travel distance = X where X is the maximum possible distance the car can run, accurate up to 2 decimal places.

Sample Input 1:

50 1300 12 8
6.00 1250
7.00 600
7.00 150
7.10 0
7.20 200
7.50 400
7.30 1000
6.85 300

Sample Output 1:

749.17

Sample Input 2:

50 1300 12 2
7.10 0
7.00 600

Sample Output 2:

The maximum travel distance = 1200.00

题目大意:第一行包含4个整数,Cmax即汽缸最大容量(<=100),D杭州到终点的距离(<=30000),Davg每单位汽油可以跑多少公里(<=20),N(<=500)加油站总数。

下面是N行,Pi表示当前加油站单位汽油价格,Di表示这个加油站距离杭州(起点)的距离。

求解出一种最省钱的方法从杭州到大目的地。

//那么先按从近到远的排个序,要加就得加满吗?

代码转自:https://www.cnblogs.com/chenxiwenruo/p/6735382.html

#include <iostream>
#include <cstdio>
#include <algorithm>
#include <string.h>
#include <cmath>
#define INF 0x3f3f3f3f
using namespace std;
const int maxn=;
int capacity,dis,davg;
int n;
struct Gas{
double price;
int dis;//到起点的距离。
bool operator<(const Gas tmp)const{//重载运算符。
return dis<tmp.dis;//当调用sort函数时,就会根据这个来排序。
}
}gas[maxn];
int main()
{
scanf("%d %d %d %d",&capacity,&dis,&davg,&n);
for(int i=;i<n;i++){
scanf("%lf %d",&gas[i].price,&gas[i].dis);
}
sort(gas,gas+n);
//最后一个设置为目的地,价格为0
gas[n].price=;
gas[n].dis=dis;
int maxdrive=capacity*davg; //能开的最大距离
int driveDis;
int leftdrive=; //跑到下一个加油站后,还能再跑多少的距离
int now=; //车所在的距离
double sum=;
for(int i=;i<n;i++){
if(now==gas[i].dis)
driveDis=maxdrive;
else
break; //表明一开始出发的地方就没有加油站
double minprice=INF;
int minid=-;
for(int j=i+;j<=n;j++){
if(now+driveDis>=gas[j].dis){
//若找到第一个比当前车站价格小的车站,就不继续往下找了
if(gas[j].price<gas[i].price){
minid=j;
minprice=gas[j].price;
break;
}
//否则,就一直找出其中费用最小的
if(gas[j].price<minprice){
minprice=gas[j].dis;
minid=j;
}
}
}
if(minid==-){
now=gas[i].dis+maxdrive;
break;
}
else{
if(minprice<gas[i].price){
//如果有费用比当前车站i更小的车站,那么加油量只需让车能够达到车站即可
sum+=((gas[minid].dis-gas[i].dis)*1.0/davg-leftdrive*1.0/davg)*gas[i].price;
leftdrive=;
i=minid-;//这样下次停在这里。
}
else{
//如果没有费用更小的,那么在i处把油加满,达到后面费用最小的那个车站
sum+=(capacity-leftdrive*1.0/davg)*gas[i].price;
leftdrive=maxdrive-(gas[minid].dis-gas[i].dis);
i=minid-;
}
now=gas[minid].dis;
}
}
if(now==dis){
printf("%.2lf\n",sum);
}
else{
printf("The maximum travel distance = %.2lf\n",(double)now);
}
return ;
}

//这个真的很厉害,要多复习!

PAT 1033 To Fill or Not to Fill[dp]的更多相关文章

  1. PAT甲级1033&period; To Fill or Not to Fill

    PAT甲级1033. To Fill or Not to Fill 题意: 有了高速公路,从杭州到任何其他城市开车很容易.但由于一辆汽车的坦克容量有限,我们不得不在不时地找到加油站.不同的加油站可能会 ...

  2. 【贪心】PAT 1033&period; To Fill or Not to Fill &lpar;25&rpar;

    1033. To Fill or Not to Fill (25) 时间限制 10 ms 内存限制 32000 kB 代码长度限制 16000 B 判题程序 Standard 作者 ZHANG, Gu ...

  3. PAT 甲级 1033 To Fill or Not to Fill &lpar;25 分&rpar;(贪心&comma;误以为动态规划&comma;忽视了油量问题)&ast;

    1033 To Fill or Not to Fill (25 分)   With highways available, driving a car from Hangzhou to any oth ...

  4. PAT甲级——1033 To Fill or Not to Fill

    1033 To Fill or Not to Fill With highways available, driving a car from Hangzhou to any other city i ...

  5. 1033 To Fill or Not to Fill

    PAT A 1033 To Fill or Not to Fill With highways available, driving a car from Hangzhou to any other ...

  6. 1033&period; To Fill or Not to Fill &lpar;25&rpar;

     题目链接:http://www.patest.cn/contests/pat-a-practise/1033 题目: 1033. To Fill or Not to Fill (25) 时间限制 1 ...

  7. 1033 To Fill or Not to Fill (25 分)

    1033 To Fill or Not to Fill (25 分) With highways available, driving a car from Hangzhou to any other ...

  8. pat1033&period; To Fill or Not to Fill &lpar;25&rpar;

    1033. To Fill or Not to Fill (25) 时间限制 10 ms 内存限制 65536 kB 代码长度限制 16000 B 判题程序 Standard 作者 ZHANG, Gu ...

  9. PAT&lowbar;A1033&num;To Fill or Not to Fill

    Source: PAT A1033 To Fill or Not to Fill (25 分) Description: With highways available, driving a car ...

随机推荐

  1. iOS9的几个新关键字(nonnull、nullable、null&lowbar;resettable、&lowbar;&lowbar;null&lowbar;unspecified)

    1.nonnull:字面意思就能知道:不能为空(用来修饰属性,或者方法的参数,方法的返回值) 代码: //三种使用方式都可以 @property (nonatomic, copy, nonnull) ...

  2. 测试lua的效率

    这几天粗略的测试了一下lua的效率!首先声明这个测试很有针对性,大部分是针对游戏中的使用,而绝非lua的整体性效率(这个测试我不会),lua构建的上层逻辑中,大概使用的语句不太多,for,迭代,调用C ...

  3. ACdream 1104 瑶瑶想找回文串(SplayTree &plus; Hash &plus; 二分)

    Problem Description 刚学完后缀数组求回文串的瑶瑶(tsyao)想到了另一个问题:如果能够对字符串做一些修改,怎么在每次询问时知道以某个字符为中心的最长回文串长度呢?因为瑶瑶整天只知 ...

  4. Nginx 关闭日志生成文件

    nginx 关闭日志:其实一种方法就是写入/dev/null 文件 或者设置关闭: nginx 日志有两个类型  access.log  http 记录访问日志. error.log   server ...

  5. macOS Sierra 如何卸载&period;net core 版本

    由于目前没有找到一个合适的办法,将本机.NET Core的版本升级到1.1,故只有先卸载再安装最新版本了. 卸载脚本链接为:https://github.com/dotnet/cli/blob/rel ...

  6. 用Nginx搭建IIS集群实现负载均衡

    长话短说,我们用Nginx来搭建一个简单的集群,实现Web应用的负载均衡,架构图如下: 两台Web服务器,一台静态资源服务器,因为是演示,我们以网站形式部署在本机IIS中 一台Nginx代理服务器,安 ...

  7. 用C&plus;&plus;实现一个Brainfuck解释器

    Brainfuck是一种极小化的计算机语言,只含有8种运算符,由于fuck在英语中是脏话,这种语言有时被称为brainfck或brainf**,甚至被简称为BF.正如它的名字所暗示,brainfuck ...

  8. python 的print和特殊方法 &lowbar;&lowbar;str&lowbar;&lowbar;和&lowbar;&lowbar;repr&lowbar;&lowbar;

    先提出一个疑问,为什么print函数可以直接打印参数呢?即使是数字?例如print 1,就会打印1.我们知道1的类型是整型(题外话,在python中1是常量,也是类int的对象,而java中1只是常量 ...

  9. namespace 相关

    #include <iostream>using namespace std;namespace first{ int var = 5;}namespace second{ double ...

  10. mui 禁止透明背景点击关闭弹窗遮罩

    //禁止关闭遮罩 window.addEventListener('tap', function(e) { e.target.className == 'mui-backdrop mui-active ...