若是凉夜已成梦

青春里 总有些事情要努力去做 总有些梦想要拼命去追。


  • 运维

  • 前端

  • 编程

  • 随笔

  • hust-oj

3156: 贪心之To Fill or Not to Fill

发表于 2017-10-06   |   分类于 HUSTOJ   |   阅读次数 1,401

题目描述

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

参考代码

#include <stdio.h>  
#include <stdlib.h>  
#include <math.h>  
#define MAXN 501  
#define MAXC 30000000.0  
typedef struct station 
{
    float price;
    int dist;
}
Station;
int compare(const void * p, const void * q) 
{
    Station * p1 = (Station *)p;
    Station * q1 = (Station *)q;
    return p1->dist - q1->dist;
}
int main(void) 
{
    int Cmax, D, Davg, N;
    //容量、距离、每单位气行驶的距离、加气站总数  
    int i;
    Station sta[MAXN];
    float sum, remind_gas, tmp;
    int k, step;
    while (scanf("%d %d %d %d", &Cmax, &D, &Davg, &N) != EOF) 
    {
        for (i=0; i<N; ++i) 
        {
            scanf("%f %d", &sta[i].price, &sta[i].dist);
        }
        sta[N].dist = D;
        sta[N].price = 1000000.0;
        qsort(sta, N, sizeof(Station), compare);
        //按与杭州距离大小给加气站排序  
        if (sta[0].dist > 0) 
        {
            printf ("The maximum travel distance = 0.00n");  
            continue;  
        }  
        sum = 0;             //总费用  
        step = Cmax*Davg;    //加满油行驶最大距离  
        remind_gas = 0;      //剩余油量  
        for (i=0; i<N; ++i){  
            k = i+1;  
            if (i != 0)  
                remind_gas -= ((float)(sta[i].dist -sta[i-1].dist))/Davg;  
            for (; k<N && sta[k].price>=sta[i].price; ++k)  
                continue;  
            if (sta[k].dist-sta[i].dist > step){  
                sum += (Cmax-remind_gas)*sta[i].price;  
                remind_gas = Cmax;  
            }  
            else{  
                tmp = ((float)(sta[k].dist-sta[i].dist))/Davg - remind_gas;  
                if (fabs(tmp)>1e-5 && tmp>0){  
                    sum += tmp*sta[i].price;  
                    remind_gas = ((float)(sta[k].dist-sta[i].dist))/Davg;  
                }  
            }  
            if (sta[i+1].dist - sta[i].dist > step){  
                printf ("The maximum travel distance = %.2fn", (float)(sta[i].dist+step));  
                break;  
            }  
        }  
        if (i == N){  
            printf ("%.2fn", sum);  
        }  
    }  
    return 0;  
}

解析

暂无

hustoj

发表评论 取消回复

邮箱地址不会被公开。 必填项已用*标注

*
*


hoxis wechat
著作权归作者所有
站点更新说明
  • 文章目录
  • 站点概览
若是凉夜已成梦

若是凉夜已成梦

青春里 总有些事情要努力去做 总有些梦想要拼命去追。

1904 日志
6 分类
12 标签
RSS
weibo github twitter facebook

友情链接

Dreams孤独患者 Skip 原站点
© 2017 若是凉夜已成梦
Powered by WordPress | 已运行
Theme By NexT.Mist