codeforce 738 C Road to Cinema 选车 (二分)





 题意:你将从0点开车到s点,路上有一些加油站,加油时间忽略不计。你有两种开车选择,一种是每km走1min,花费2L油,另一种是每km走2min,花费1L油。你有n种汽车可以选择,给出它们的油箱容量(刚开始满的)和价格,能否选择一辆价格最低的车,能在时间t内跑完全程?如果不能输出-1



解题:直接二分油量,最低的油量需要多少....  再进行选车, 速度选择上面稍加思考就能出!


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 nks and t (1 ≤ n ≤ 2·1051 ≤ k ≤ 2·1052 ≤ s ≤ 1091 ≤ 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.



#include<bits/stdc++.h>
using namespace std;
const int N = 2e5 + 100;
const int inf = 0x3f3f3f3f;
struct node
{
    int c,v;
} a[N];
int b[N],c[N];
int t,k,s;
int work1(int v)
{
    int i,j,sum;
    sum=0;
    for(i=0; i<=k; i++)
    {
        sum+=c[i]*2-min(v-c[i],c[i]);
    }
    return sum;
}
int work(int l,int r)
{
    int mid,num;
    while(l<=r)
    {
        mid=(l+r)>>1;
        num=work1(mid);
        if(num<=t) r=mid-1;
        else l=mid+1;
    }
    return l;
}
int main()
{
    int i,j,v,l,r,ans,n,tmp;
    scanf("%d%d%d%d",&n,&k,&s,&t);
    for(i=1; i<=n; i++) scanf("%d%d",&a[i].c,&a[i].v);
    for(i=0; i<k; i++) scanf("%d",&b[i]);
    sort(b,b+k);
    c[0]=b[0];
    for(i=1; i<k; i++) c[i]=b[i]-b[i-1];
    c[k]=s-b[k-1];
    l=0,r=0;
    for(i=0; i<=k; i++) r+=c[i]*2,l=max(l,c[i]);
    v=work(l,r);
    ans=inf;
    for(i=1; i<=n; i++)
    {
        if(a[i].v>=v) ans=min(ans,a[i].c);
    }
    if(ans==inf || work1(v)>t ) ans=-1;
    printf("%d\n",ans);
    return 0;
}





  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值