Codeforces(738C)-Road to Cinema

原题链接

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 2minutes, 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 tminutes. 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.

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
二分求出满足条件的最小油的容量

#include <cstdio>
#include <cmath>
#include <iostream>
#include <vector>
#include <algorithm>
#include <cstring>
#define MOD 100000007
#define maxn 200005
using namespace std;
typedef long long ll;

struct Node{
	int c, v;
}node[maxn];
int num[maxn];
int n, k, s, t;
bool judge(int m){
	
	int p = 0, v = m, tt = 0;
	for(int i = 0; i <= k; i++){
		int h = num[i] - p;
		if(v < h)
		 return false;
		if(v / 2 >= h){
			tt += h;
		}
		else{
			tt += v - h;
			tt += 2 * (h - (v - h));
		}
		p = num[i];
		if(tt > t)
		 return false;
	}
	return true;
}
int main(){
//	freopen("in.txt", "r", stdin);
	scanf("%d%d%d%d", &n, &k, &s, &t);
	for(int i = 0; i < n; i++)
	 scanf("%d%d", &node[i].c, &node[i].v);
	for(int i = 0; i < k; i++)
	 scanf("%d", num+i);
	sort(num, num+k);
	num[k] = s;
	int mins = 1e9 + 1;
	int l = 0, r = 2 * s + 1;
	while(l < r){
		int mid = ((ll)l + r) >> 1;
		if(judge(mid))
		 r = mid;
		else
		 l = mid + 1;
	}   
	for(int i = 0; i < n; i++){
		if(node[i].v >= l){
			mins = min(mins, node[i].c);
		}
	}
	if(mins == 1e9 + 1 || judge(l) == false)
	 puts("-1");
	else
	 printf("%d\n", mins);
	return 0; 
}



  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值