• 1033 To Fill or Not to Fill


    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​​ (≤), the distance between this station and Hangzhou, for ,. 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.从当前加油站向前行驶,当油箱中的廉价油都消耗完了之后,仍然没有找到比当前加油站油价更低的加油站,这时我们要将油箱加满,然后寻找途中相对廉价的加油站加油。

    Code:

     1 #include <bits/stdc++.h>
     2 
     3 using namespace std;
     4 
     5 const int inf = 0x7fffffff;
     6 
     7 struct Station {
     8     double price;
     9     double distance;
    10 } sta[505];
    11 
    12 bool cmp(Station a, Station b) { return a.distance < b.distance; }
    13 
    14 int main() {
    15     int n;
    16     double c, dis, avg;
    17     cin >> c >> dis >> avg >> n;
    18     double price, distance;
    19     for (int i = 1; i <= n; ++i) {
    20         cin >> price >> distance;
    21         sta[i].price = price;
    22         sta[i].distance = distance;
    23     }
    24     sta[0] = {0.0, dis};
    25     sort(sta, sta + n + 1, cmp);
    26     double nowPrice = 0.0, totalprice = 0.0, leftdis = 0.0, nowdis = 0.0,
    27            maxdis = 0.0;
    28     // 如果第一个加油站不在起点的话,则直接结束
    29     if (sta[0].distance != 0) {
    30         cout << "The maximum travel distance = 0.00" << endl;
    31         return 0;
    32     } else {
    33         nowPrice = sta[0].price;
    34     }
    35     while (nowdis < dis) {
    36         maxdis = nowdis + c * avg;
    37         // 用来标记在所能达到的历程内是否有比当前加油站更便宜的汽油
    38         int flag = 0;
    39         // 在所能行驶的里程内,最便宜油价的加油站的距离和油价
    40         // 如果 minPrice = inf 则表示该加油站为最后一个加油站
    41         double minPirceDis = 0.0, minPrice = inf;
    42         // 从第二个加油站开始遍历,贪心寻找最便宜的加油站,使整个旅程的价格最低
    43         for (int i = 1; i <= n && sta[i].distance <= maxdis; ++i) {
    44             if (sta[i].distance <= nowdis) continue;
    45             // 在所能达到的历程中找到比当前油价更便宜的加油站
    46             if (nowPrice > sta[i].price) {
    47                 flag = 1;
    48                 // 在当前加油站加油,使tank中的油刚好能够到达比当前油价便宜的下一个加油站
    49                 totalprice +=
    50                     (sta[i].distance - nowdis - leftdis) / avg * nowPrice;
    51                 nowdis = sta[i].distance;
    52                 nowPrice = sta[i].price;
    53                 leftdis = 0.0;
    54                 break;
    55             }
    56             // 寻找在所能达到的历程中,油价最便宜的加油站
    57             if (sta[i].price < minPrice) {
    58                 minPrice = sta[i].price;
    59                 minPirceDis = sta[i].distance;
    60             }
    61         }
    62         // 在当前所能达到的历程中,不存在比当前更便宜的加油站时
    63         if (flag == 0 && minPrice != inf) {
    64             // 因为不存在比当前油价更能便宜的加油站,所以应该在当前油站加满油箱,到达历程中油价最便宜的那个油站
    65             totalprice += nowPrice * (c - leftdis / avg);
    66             // 更新油箱中剩余油量所能行驶的距离
    67             leftdis = c * avg - (minPirceDis - nowdis);
    68             nowPrice = minPrice;
    69             nowdis = minPirceDis;
    70         }
    71         // 当前加油站为最后一个加油站,且没有到达目的地
    72         if (flag == 0 && minPrice == inf) {
    73             nowdis += c * avg;
    74             cout << "The maximum travel distance = " << fixed << setprecision(2)
    75                  << nowdis << endl;
    76             return 0;
    77         }
    78     }
    79     cout << fixed << setprecision(2) << totalprice << endl;
    80     return 0;
    81 }

    参考:

      https://www.liuchuo.net/archives/2461

  • 相关阅读:
    Java面试题
    删除两个相同的数据
    Oracle中的rowid rownum
    SQL的七种连接
    Oracle的分页和MySQL的分页
    Script to Collect Log File Sync Diagnostic Information (lfsdiag.sql) (文档 ID 1064487.1)
    Analytic Functions in Oracle
    Oracle X$Tables
    Microsoft SQL Server Trace Flags
    Oracle Log Block Size
  • 原文地址:https://www.cnblogs.com/h-hkai/p/13122379.html
Copyright © 2020-2023  润新知