【CodeForces 729C】【二分+贪心】Road to Cinema 题解

来源:互联网 发布:深圳咫尺网络 编辑:程序博客网 时间:2024/05/29 11:11

Road to Cinema

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.

Example
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.

二分查找出最小油量,根据最小油量找最小价格。
对于二分过程,设出x1和x2代表高低速所走的路程,解个二元一次方程组。处理好边界情况。

附同伴的AC代码

#include<stdio.h>#include<stdlib.h>int cmp(const void* a,const void* b){    return (*(int*)a-*(int*)b);}int c[262144],v[262144],g[262144],px[262144],px2[262144];int cmp2(const void* a,const void* b){    int cc=*(int*)a,dd=*(int*)b;    return c[cc]-c[dd];}int main(){    int n,k,s,t;    scanf("%d%d%d%d",&n,&k,&s,&t);    for(int i=0;i<n;i++)    {        scanf("%d%d",&c[i],&v[i]);        px[i]=i;    }    for(int i=0;i<k;i++)    {        scanf("%d",&g[i]);    }    qsort(g,k,4,&cmp);    qsort(px,n,4,&cmp2);    g[k]=s;    c[n]=-1;    px[n]=n;    int max=0;    int j=0;    for(int i=0;i<n;i++)    {        if(v[px[i]]>max)        {            max=v[px[i]];            px2[j++]=px[i];        }    }    px2[j]=n;    int left=0,right=j;    while(left<right)    {        int i=(left+right)>>1;        int oil=v[px2[i]];        int j=0;        int wz=0;        int tim=0;        while(1)        {            if(tim>t)            {                break;            }            if(oil<g[j]-wz)            {                tim=t+1;                break;            }            int spd=oil-(g[j]-wz);            oil-=spd<<1;            if(oil>0)            {                wz+=spd;                tim+=spd;            }            else            {                tim+=g[j]-wz;                wz=g[j];            }            tim+=(g[j]-wz)<<1;            wz=g[j];            oil=v[px2[i]];            j++;            if(j>k)            {                break;            }        }        if(tim<=t)        {            right=i;        }        else        {            left=i+1;        }    }    printf("%d",c[px2[left]]);    return 0;}
0 0
原创粉丝点击