题目

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. Diferent gas station may give diferent 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: Cmax (<=100), the maximum capacity of the tank; D (<=30000), the distance between Hangzhou and the destination city; Davg (<=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: Pi, the unit gas price, and Di (<=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

题目分析

从初始地到目的地,已知沿途高速各加油站价格,找出最省钱的加油方式

解题思路

  1. 如果一整箱油可行驶距离<当前站到下一站的距离,那么车子无法到达下一站,打印最远行驶距离(即当前站距起始点距离+一整箱油可行驶距离)
  2. 在一整箱油可到达的距离内,(当前站记为A站,后续油站中最低油价站记为B站,后续油站中小于当前站油价价格的站记为C站)

    2.1 如果当前站价格后续油站中最低价还低,加满油直到后续油站中最低价油站B(到达B站后可能油箱还有剩余)

    2.2 如果后续油站中能找到小于当前站油价的站C,加油量=刚好到达C站,在C站再加油(到达C站无剩余油)
  3. 将目的地记做"最后一个加油站",其油价设置为0(作为哨兵),若目的地为当前站一整箱油可达距离内,加油量只需要当前站到达最后目的地即可,无需多余

Code

Code 01

#include <iostream>
#include <vector>
#include <algorithm>
#include <limits>
using namespace std;
const double inf = 99999999;
struct station {
double d; // distance
double p; // price
};
bool cmp(station &s1,station &s2) {
return s1.d<s2.d;
}
int main(int argc, char * argv[]) {
double CM,D,DA;
int N;
scanf("%lf %lf %lf %d",&CM,&D,&DA,&N);
vector<station> vss(N+1);
for(int i=0; i<N; i++) {
scanf("%lf %lf", &vss[i].p, &vss[i].d);
}
vss[N].d=D,vss[N].p=0.0; //哨兵
sort(vss.begin(),vss.end(),cmp); //按照距离排序 if(vss[0].d!=0) {
//起始油箱空,并且起始位置没有加油站
printf("The maximum travel distance = 0.00"); //注意是0.00,而不是0,否则第三个测试点错误
return 0;
}
double nowd=0.0,nowp=vss[0].p,fd=0.0,ap=0.0; //ap总费用;fd到站油箱剩余油可行驶路程
double SM = CM*DA; //一箱油可行驶路程
while(nowd<D) {
int maxd=nowd+SM; // 当前邮箱加满可行驶的最远距离
double minp=inf,mind=0.0;
bool flag = false;
for(int i=0; i<=N&&vss[i].d<=maxd; i++) {
if(vss[i].d<=nowd)continue;
if(vss[i].p<nowp) {
ap+=(vss[i].d-nowd-fd)*nowp/DA;
nowd=vss[i].d;
nowp=vss[i].p;
fd=0.0; //加的油刚好到最低价的油站
flag = true;
break;
}
if(minp>vss[i].p) {
minp=vss[i].p;
mind=vss[i].d;
}
}
if(!flag&&minp!=inf) { // 之后的站没有比当前站价格更便宜,取后面站中最低价的站C
//因为当前站价格更低,装满油箱,行驶到C站,再加油
ap+=((CM-fd/DA)*nowp);
fd=SM-(mind-nowd);
nowd=mind;
nowp=minp;
}
if(!flag&&minp==inf) { // 即使油箱满油,也不足以行驶到下一站
printf("The maximum travel distance = %.2f", nowd+SM);
return 0;
}
}
printf("%.2f", ap);
return 0;
}

PAT Advanced 1033 To Fill or Not to Fill (25) [贪⼼算法]的更多相关文章

  1. PAT (Advanced Level) Practice 1002 A+B for Polynomials (25 分) 凌宸1642

    PAT (Advanced Level) Practice 1002 A+B for Polynomials (25 分) 凌宸1642 题目描述: This time, you are suppos ...

  2. PAT Advanced 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 c ...

  3. PAT (Advanced Level) 1106. Lowest Price in Supply Chain (25)

    简单dfs #include<cstdio> #include<cstring> #include<cmath> #include<vector> #i ...

  4. PAT (Advanced Level) 1097. Deduplication on a Linked List (25)

    简单题. #include<cstdio> #include<cstring> #include<cmath> #include<vector> #in ...

  5. PAT (Advanced Level) 1090. Highest Price in Supply Chain (25)

    简单dfs. #include<cstdio> #include<cstring> #include<cmath> #include<algorithm> ...

  6. PAT (Advanced Level) 1079. Total Sales of Supply Chain (25)

    树的遍历. #include<cstdio> #include<cstring> #include<cmath> #include<vector> #i ...

  7. PAT (Advanced Level) 1006. Sign In and Sign Out (25)

    简单题. #include<iostream> #include<cstring> #include<cmath> #include<algorithm> ...

  8. PAT (Advanced Level) Practise - 1098. Insertion or Heap Sort (25)

    http://www.patest.cn/contests/pat-a-practise/1098 According to Wikipedia: Insertion sort iterates, c ...

  9. PAT Advanced 1046 Shortest Distance (20 分) (知识点:贪心算法)

    The task is really simple: given N exits on a highway which forms a simple cycle, you are supposed t ...

随机推荐

  1. 二十、JavaScript之对象

    一.代码如下 二.执行效果如下 <!DOCTYPE html> <html> <meta http-equiv="Content-Type" cont ...

  2. 第十七篇 ORM跨表查询和分组查询---二次剖析

    ORM跨表查询和分组查询---二次剖析 阅读目录(Content) 创建表(建立模型) 基于对象的跨表查询 一对多查询(Publish与Book) 多对多查询 (Author 与 Book) 一对一查 ...

  3. tornado和vue的模板冲突解决方法

    tornado和vue的模板冲突解决方法 Vue的插值表达式和tornado的模板都为一对花括号,可以通过修改vue的插值表达式的符号来解决这个问题,具体方法如下: var vm = new Vue( ...

  4. UVA - 10570 Meeting with Aliens(外星人聚会)(暴力枚举)

    题意:输入1~n的一个排列(3<=n<=500),每次可以交换两个整数.用最少的交换次数把排列变成1~n的一个环状序列. 分析:正序反序皆可.枚举每一个起点,求最少交换次数,取最小值. 求 ...

  5. linux shell的创建与启动

    1.创建shell脚本,输入linux命令: touch my.sh 2.编辑shell脚本,输入linux命令: vi my.sh 3.在shell脚本进行编辑:顺便记一次Jenkins的自动启动的 ...

  6. cf 609E.Minimum spanning tree for each edge

    最小生成树,lca(树链剖分(太难搞,不会写)) 问存在这条边的最小生成树,2种情况.1.这条边在原始最小生成树上.2.加上这条半形成一个环(加上),那么就找原来这条边2端点间的最大边就好(减去).( ...

  7. sql server ------创建本地数据库 SQL Server 排序规则

    sql server完整复制数据库 sql server导入导出方法 SQL Server 排序规则

  8. mysql第三篇:表操作

    第三篇:表操作 一.什么是表 表相当于文件,表中的一条记录就相当于文件的一行内容,不同的是,表中的一条记录有对应的标题,称为表的字段 二.创建表 语法 CREATE TABLE 表名( 字段名1 类型 ...

  9. Mac 用终端(命令行)打开vscode编辑器

    1.打开控制面板(⇧⌘P) 2.输入 shell command 在提示里看到 Shell Command: Install ‘code’ command in PATH, 就可以了. 3.使用: c ...

  10. 18 12 27 css 盒模型使用 以及相关技巧问题 元素溢出 块元素、内联元素、内联块元素

    盒子模型的实际尺寸 盒子的width和height设置的是盒子内容的宽和高,不是盒子本身的宽和高,盒子的真实尺寸计算公式如下: 盒子宽度 = width + padding左右 + border左右 ...