九度OJ #1437 To Fill or Not to Fil

题目描写叙述:

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.

输入:

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.

输出:

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.

例子输入:
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
50 1300 12 2
7.10 0
7.00 600
例子输出:
749.17
The maximum travel distance = 1200.00
来源:

2012年浙江大学计算机及软件project研究生机试真题


这道题确实挺难的,花了好久的时间,然后自己考虑不全面,最后參考别人的代码才搞定。

就不敢写原创了。。。


http://ziliao1.com/Article/Show/73A96AF77079A6C32C4AA82604FCF691


典型的贪心法。

思想就是考虑下一次在何网站加油(从而决定了在本网站须要加多少油)。

考虑这样几种情况:

     1、到达下一网站所需油量 > 油箱最大容量:则下一网站不可达。做法是把油箱加满,尽可能跑,然后break掉。

     2、下一网站可达,且油价比本网站廉价:则应尽早“换用”更廉价的油。做法是本站加够就可以。使得刚好能到达下一站。

     3、下一网站可达。但油价比本网站贵:此处第一次做错了,不应该在本站把油箱加满,而应该继续寻找满油的条件下可达的下一个比本站廉价的网站。若找到,则加够就可以(所以情况2能够并到这里);若未找到,则在本站将油箱加满。

#include <algorithm>#include <iomanip>
#include <iostream>
using namespace std;
struct station
{
float price;
float dist;
};
station st[501];
float cmax, d, davg;
int n;
bool cmp(station a, station b)
{
return a.dist < b.dist;
}
// 寻找下一个可达的廉价网站
int nextCheaper(int now)
{
for(int i = now; i < n; i++)
{
if(st[i].dist - st[now].dist > cmax * davg) break;
if(st[i].price < st[now].price)
return i;
}
return -1;
}
int main()
{
while(cin >> cmax)
{
cin >> d >> davg >> n;
for(int i = 0; i < n; i++)
cin >> st[i].price >> st[i].dist;
st[n].price = -1; st[n].dist = d;
n = n + 1;
sort(st, st + n, cmp);
int nowst = 0;
float nowgas = 0;
float cost = 0;
while(nowst < n - 1)
{
if(nowst == 0 && st[0].dist != 0)
{
st[nowst].dist = 0; break;
}
float needgas = (st[nowst + 1].dist - st[nowst].dist) / davg;
if(needgas > cmax)
{
float addgas = cmax - nowgas;
cost += addgas * st[nowst].price;
st[nowst].dist += cmax * davg;
break;
}
int nextc = nextCheaper(nowst);
if(nextc == -1)
{
float addgas = cmax - nowgas;
nowgas = cmax;
cost += addgas * st[nowst].price;
nowgas -= needgas;
nowst = nowst + 1;
}else{
needgas = (st[nextc].dist - st[nowst].dist) / davg;
float addgas = needgas - nowgas;
if(addgas > 0)
{
nowgas += addgas;
cost += addgas * st[nowst].price;
}
nowgas -= needgas;
nowst = nextc;
}
}
if(nowst == n - 1)
cout << fixed << setprecision(2) << cost << endl;
else{
float maxdist = st[nowst].dist;
cout << "The maximum travel distance = "<< fixed << setprecision(2) << maxdist << endl;
}
}
return 0;
}

以下是我模仿大神自己手写的代码,差点儿都改动的全然一样了。。。眼下还是过不了。郁闷

有时间再研究一下啦。。。如今 真的发现不了什么错误了

#include <iostream>
#include <cstdio>
#include <algorithm>
using namespace std;
struct station
{float pri;float dis;
}a[999];
int c,d,davg,n;
int cmp(station t1,station t2)
{return t1.dis<t2.dis;
}
int next(int now)
{for(int i=now+1;i<=n&&a[i].dis-a[now].dis<=c*davg;i++){if(a[i].pri<a[now].pri)return i;}return -1;
}int main()
{int i;while(cin>>c>>d>>davg>>n){for(i=0;i<n;i++){scanf("%f %f",&a[i].pri,&a[i].dis);}a[n].pri=-1;a[n].dis=d;sort(a,a+n,cmp);// for(i=0;i<n;i++)//printf("%f %f\n",a[i].dis,a[i].pri);int nowst=0;float anspri=0,ansdis=0,nowgas=0;while(nowst<n){if(nowst==0&&a[0].dis!=0){ansdis=0;break;}float needgas=(a[nowst+1].dis-a[nowst].dis)/davg;if(needgas>c){ansdis+=davg*c;break;}int nextst=next(nowst);//   printf("%d %d %f\n",nowst,nextst,anspri);if(nextst==-1){anspri+=(c-nowgas)*a[nowst].pri;nowgas=c-needgas;ansdis=a[nowst+1].dis;nowst+=1;}else{float addgas=(a[nextst].dis-a[nowst].dis)/davg-nowgas;if(addgas>0){nowgas=0;anspri+=addgas*a[nowst].pri;}elsenowgas-=needgas;nowst=nextst;ansdis=a[nowst].dis;}}if(nowst==n)printf("%.2f\n",anspri);elseprintf("The maximum travel distance = %.2f\n",ansdis);}return 0;
}/**************************************************************Problem: 1437User: HCA1101Language: C++Result: Wrong Answer
****************************************************************/


转载于:https://www.cnblogs.com/gcczhongduan/p/5266838.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/430771.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

armv8 汇编 绝对地址赋值_详解汇编语言B和LDR指令与相对跳转和绝对跳转的关系...

[TOC]为什么要有相对跳转和绝对跳转&#xff1f;顺序执行&#xff1a;指令一条一条按照顺序往下执行&#xff0c;比如变量的定义和赋值都是按照顺序执行的。跳转执行&#xff1a;当指令执行到当前位置后跳转到其他位置执行。比如&#xff0c;在主函数中调用其他函数就是典型的跳…

BZOJ 4034: [HAOI2015]T2 树链剖分

4034: [HAOI2015]T2 Description 有一棵点数为 N 的树&#xff0c;以点 1 为根&#xff0c;且树点有边权。然后有 M 个 操作&#xff0c;分为三种&#xff1a;操作 1 &#xff1a;把某个节点 x 的点权增加 a 。操作 2 &#xff1a;把某个节点 x 为根的子树中所有点的点权都增加…

mysql把游标数据存入表中_mysql数据库怎么使用游标

存储过程完整代码.CREATE DEFINERrootlocalhost PROCEDURE cj_zongfen()BEGINDECLARE yw INT;#语文成绩DECLARE sx INT;#数学成绩DECLARE yy INT;#英语成绩DECLARE d INT;DECLARE nf BOOLEAN DEFAULT TRUE;DECLARE zongfen_cursor CURSOR FOR SELECT yuwen,shuxue,yingyu,cid …

yum安装ruby_centos 6.5 ruby环境安装

redis3.0以上支持集群&#xff0c;自带集群管理工具redis-trib.rb&#xff1b;在搭建集群前&#xff0c;安装ruby环境安装开发工具1、命令&#xff1a;yum groupinstall "Development tools"清理已安装过的2、命令&#xff1a;yum erase ruby ruby-libs ruby-mode ru…

mongodb3.0 性能測试报告 一

mongodb3.0 性能測试报告 一 mongodb3.0 性能測试报告 二 mongodb3.0 性能測试报告 三測试环境&#xff1a; 服务器&#xff1a;X86 pcserver 共6台 cpu&#xff1a; 单颗8核 内存&#xff1a;64G 磁盘&#xff1a; raid 10 操作系统 &#xff1a;centos 6.5 mongo…

db2 某个字段排序_MySQL、Oracle、DB2等数据库常规排序、自定义排序和按中文拼音字母排序...

MySQL常规排序、自定义排序和按中文拼音字母排序&#xff0c;在实际的SQL编写时&#xff0c;我们有时候需要对条件集合进行排序。下面给出3中比较常用的排序方式&#xff0c;mark一下1.常规排序ASC DESCASC 正序DESC倒叙-- 此处不用多讲2.自定义排序自定义排序是根据自己想要的…

QML官方系列教程——QML Applications

附网址&#xff1a;http://qt-project.org/doc/qt-5/qmlapplications.html假设你对Qt的官方demo感兴趣&#xff0c;能够參考本博客的另一个系列Qt5官方demo解析集每一个绿色字体均是一篇博文连接。请收藏本文&#xff0c;本文会持续更新 。QML Applications —— QML应用程序QM…

51单片机基本刷屏测试实验_基于单片机的发动机振动速度、位移和加速度测量方法...

Single-chip microcomputer-based measuring of engine vibration  speed、displacement and accelerationAbstract: This paper presents a measuring method of engine vibration speed、displacement and acceleration。At first the signal from vibration senor of engin…

python正则表达式group用法_【Python】正则表达式用法

导读&#xff1a;正则在各语言中的使用是有差异的&#xff0c;本文以 Python 3 为基础。本文主要讲述的是正则的语法&#xff0c;对于 re 模块不做过多描述&#xff0c;只会对一些特殊地方做提示。很多人觉得正则很难&#xff0c;在我看来&#xff0c;这些人一定是没有用心。其…

HTTP 错误 404.3 – Not Found 由于扩展配置问题而无法提供您请求的页面。如果该页面是脚本,请添加处理程序。如果应下载文件,请添加 MIME 映射。...

今天&#xff0c;在vs2013中新建了一个placard.json文件&#xff0c;当我用jq读取它的时候&#xff0c;去提示404&#xff0c;直接在浏览器访问这个文件&#xff0c;提示&#xff1a; HTTP 错误 404.3 – Not Found 由于扩展配置问题而无法提供您请求的页面。如果该页面是脚本&…

python操作redis集群_python操作redis集群

strictRedis对象方法用于连接redis指定主机地址&#xff0c;port与服务器连接&#xff0c;默认db是0&#xff0c;redis默认数据库有16个&#xff0c;在配置文件中指定database 16上代码1、对redis的单实例进行连接操作根据不同的实例方法&#xff0c;与redis的命令对应python3&…

ArcGIS将CAD等高线转换为TIN/DEM数据

1.CAD图层分离 CAD快捷命令QSELECT&#xff08;快速选择&#xff09; 选择DGX,GCD图层&#xff0c;复制到新的CAD文件中 2.在ArcGIS中&#xff0c;将dwg文件转化为可编辑的要素类文件&#xff08;shapefiles&#xff09; 分析工具-提取分析-筛选 3.高程数据修正 鼠标右键生…

这周工作

这周在课上做了简单的小程序&#xff0c;做我感觉不是很好&#xff0c;好多东西不会&#xff0c;觉得上学年学的好多知识都没有搞懂&#xff0c;课下在看书期间&#xff0c;还是有好多看不懂。我在深思我我就是个打酱油的。转载于:https://www.cnblogs.com/wulaoliu/p/5277037.…

字节跳动专家会_字节跳动招聘直播策略运营专家/经理/海外财务AR BP,ACCA优先...

字节跳动是把人工智能技术大规模应用于信息分发的公司&#xff0c;短短7年&#xff0c;从最初的一个“今日头条”&#xff0c;已经发展为拥有“抖音”、“西瓜视频”、“火山小视频”、“FaceU”等十几款产品的公司。每天&#xff0c;都有6亿用户通过字节跳动的产品看见更大的世…

矩形河道中心排放污染物浓度点源二维移流扩散MATLAB解析解计算

某非可降解物质在20℃水体中从河道中心排放&#xff0c;速度与水流流速方向相同&#xff0c;排污口为时间连续点源。河道为矩形河道&#xff0c;长度16.0m&#xff0c;宽度3.0m&#xff0c;水深2.0m&#xff0c;水流流速2.0m/s。单位时间投放的污染物强度为30mg/L。假设污染物排…

elementui树状菜单tree_vue.js+element-ui做出菜单树形结构

这次给大家带来vue.jselement-ui做出菜单树形结构&#xff0c;vue.jselement-ui做出菜单树形结构的注意事项有哪些&#xff0c;下面就是实战案例&#xff0c;一起来看一下。由于业务需要&#xff0c;要求实现树形菜单&#xff0c;且菜单数据由后台返回&#xff0c;在网上找了几…

ArcGIS如何将经纬度坐标显示转化为xy坐标显示

GIS中经纬度坐标显示如图&#xff1a; 视图-数据框属性-常规-显示&#xff08;米&#xff09; 点击确定&#xff0c;然后坐标显示就转换为xy坐标了 注意&#xff0c;以上设置只是设置了当前文档的坐标系统&#xff0c;并不是数据的坐标系 举个例子&#xff1a;我将2160这条等高…

poj 2503 Trie树

典型的Trie树&#xff0c; 算是复习一下字符串吧&#xff0c; 就是输入有点恶心&#xff0c;代码如下&#xff1a; #include <cstdio> #include <cstring> #include <algorithm>using namespace std; const int maxn 500000100; struct Trie{bool isword;in…

尚硅谷k8s安装文档_Kubernetes(k8s)中文文档 从零开始k8s_Kubernetes中文社区

译者&#xff1a;王乐这部文档是面对想要学习Kubernetes集群的读者。如果你对入门指南已经可以满足你对这个列表上所列的需求&#xff0c;我们建议你继续阅读这个&#xff0c;因为他是根据前人积累经验所写的新手指南。当然如果除了学习入门指南知识外还希望学习IaaS&#xff0…

ArcGIS改变数据集或要素类的的坐标系(投影)

数据管理工具-投影和变换-投影-输入数据集或要素类-输出数据集或要素类-输出坐标系(选择合适的投影坐标系)