zoukankan      html  css  js  c++  java
  • CF2.C(二分贪心)

    C. Road to Cinema
    time limit per test
    1 second
    memory limit per test
    256 megabytes
    input
    standard input
    output
    standard output

    Vasya is currently at a car rental service, and he wants to reach cinema. The film he has bought a ticket for starts in t minutes. There is a straight road of length s from the service to the cinema. Let's introduce a coordinate system so that the car rental service is at the point 0, and the cinema is at the point s.

    There are k gas stations along the road, and at each of them you can fill a car with any amount of fuel for free! Consider that this operation doesn't take any time, i.e. is carried out instantly.

    There are n cars in the rental service, i-th of them is characterized with two integers ci and vi — the price of this car rent and the capacity of its fuel tank in liters. It's not allowed to fuel a car with more fuel than its tank capacity vi. All cars are completely fueled at the car rental service.

    Each of the cars can be driven in one of two speed modes: normal or accelerated. In the normal mode a car covers 1 kilometer in 2 minutes, and consumes 1 liter of fuel. In the accelerated mode a car covers 1 kilometer in 1 minutes, but consumes 2 liters of fuel. The driving mode can be changed at any moment and any number of times.

    Your task is to choose a car with minimum price such that Vasya can reach the cinema before the show starts, i.e. not later than in t minutes. Assume that all cars are completely fueled initially.

    Input

    The first line contains four positive integers n, k, s and t (1 ≤ n ≤ 2·105, 1 ≤ k ≤ 2·105, 2 ≤ s ≤ 109, 1 ≤ t ≤ 2·109) — the number of cars at the car rental service, the number of gas stations along the road, the length of the road and the time in which the film starts.

    Each of the next n lines contains two positive integers ci and vi (1 ≤ ci, vi ≤ 109) — the price of the i-th car and its fuel tank capacity.

    The next line contains k distinct integers g1, g2, ..., gk (1 ≤ gi ≤ s - 1) — the positions of the gas stations on the road in arbitrary order.

    Output

    Print the minimum rent price of an appropriate car, i.e. such car that Vasya will be able to reach the cinema before the film starts (not later than in t minutes). If there is no appropriate car, print -1.

    Examples
    Input
    3 1 8 10
    10 8
    5 7
    11 9
    3
    Output
    10
    Input
    2 2 10 18
    10 4
    20 6
    5 3
    Output
    20
    Note

    In the first sample, Vasya can reach the cinema in time using the first or the third cars, but it would be cheaper to choose the first one. Its price is equal to 10, and the capacity of its fuel tank is 8. Then Vasya can drive to the first gas station in the accelerated mode in 3 minutes, spending 6 liters of fuel. After that he can full the tank and cover 2 kilometers in the normal mode in 4 minutes, spending 2 liters of fuel. Finally, he drives in the accelerated mode covering the remaining 3 kilometers in 3 minutes and spending 6 liters of fuel.

    题意:

    有n辆车,每辆车有租金和邮箱的容量,路上有k个加油站,道路总长s,要求在t时间内到达终点,问选哪辆车可以以最少的租金在规定时间内到达,加油站加油不要钱,最后一行给出加油站的位置。

    代码:

     1 //直接找会在第31组样例TE,卡了好久。二分油箱,找到一个最小的油箱容量能够走完全程,汽车排序后找到第一个大于等于该容量的汽车即可
     2 //二分啊,每次都想不清楚,写不对!
     3 #include<bitsstdc++.h>
     4 using namespace std;
     5 struct Lu
     6 {
     7     int r,v;
     8 }L[200005];
     9 int com[200005];
    10 int n,k,s,t;
    11 bool cmp1(Lu x,Lu y)
    12 {
    13     return x.r<y.r;
    14 }
    15 bool cmp2(int x,int y)
    16 {
    17     return x<y;
    18 }
    19 int check(long long mid)
    20 {
    21     int m=0,now=0,st=t;
    22     while(m<k)
    23     {
    24         if(com[m]-now>mid||com[m]-now>st)
    25             return 0;
    26         long long tem=mid-(com[m]-now);//剩余多少油就说明可以有多少路高速行驶
    27         if(tem>com[m]-now)
    28             tem=com[m]-now;
    29         st-=(tem+2*(com[m]-now-tem));
    30         now=com[m];
    31         m++;
    32     }
    33     if(s-now>mid||s-now>st)
    34         return 0;
    35     long long tem=mid-(s-now);
    36     if(tem>s-now)
    37         tem=s-now;
    38     st-=(tem+2*(s-now-tem));
    39     if(st<0) return 0;
    40     return 1;
    41 }
    42 int main()
    43 {
    44     scanf("%d%d%d%d",&n,&k,&s,&t);
    45     for(int i=0;i<n;i++)
    46         scanf("%d%d",&L[i].r,&L[i].v);
    47     for(int i=0;i<k;i++)
    48         scanf("%d",&com[i]);
    49     sort(L,L+n,cmp1);
    50     sort(com,com+k,cmp2);
    51     long long lef=1,rig=2000000009,mid;
    52     while(lef<=rig)
    53     {
    54         mid=(lef+rig)/2;
    55         if(check(mid))
    56             rig=mid-1;
    57         else lef=mid+1;
    58     }
    59    // cout<<rig+1<<endl;
    60     int ans=-1;
    61     for(int i=0;i<n;i++)
    62     if(L[i].v>=rig+1)
    63     {
    64         ans=L[i].r;
    65         break;
    66     }
    67     printf("%d
    ",ans);
    68     return 0;
    69 }
  • 相关阅读:
    [leetcode]95 Unique Binary Search Trees II (Medium)
    [leetcode] 96 Unique Binary Search Trees (Medium)
    [leetcode] 72. Edit Distance (hard)
    [leetcode] 120. Triangle (Medium)
    [leetcode] 63. Unique Paths II (medium)
    [OpenGL] 不规则区域的填充算法
    [leetcode] 64. Minimum Path Sum (medium)
    ESLint入坑
    报错:for..in loops iterate over the entire prototype chain, which is virtually never what you want.
    vue解决seo优化之预渲染prerender-spa-plugin
  • 原文地址:https://www.cnblogs.com/--ZHIYUAN/p/6123898.html
Copyright © 2011-2022 走看看