SGU 531

Bonnie and Clyde

Description

Bonnie and Clyde are into robbing banks. This time their target is a town called Castle Rock. There are n banks located along Castle Rock's main street; each bank is described by two positive integers xi, wi, where xi represents the distance between the i-th bank and the beginning of the street and wi represents how much money the i-th bank has. The street can be represented as a straight line segment, that's why values of xi can be regarded as the banks' coordinates on some imaginary coordinate axis.

This time Bonnie and Clyde decided to split, they decided to rob two different banks at a time. As robberies aren't exactly rare in Castle Rock, Bonnie and Clyde hope that the police won't see the connection between the two robberies. To decrease the chance of their plan being discovered by the investigation, they decided that the distance between the two robbed banks should be no less than d.

Help Bonnie and Clyde find two such banks, the distance between which is no less than d and the sum of money in which is maximum.

Input

The first input line contains a pair of integers n, d (1 ≤ n ≤ 2 · 105, 1 ≤ d ≤ 108), where n is the number of banks and d is the minimum acceptable distance between the robberies. Then n lines contain descriptions of banks, one per line. Each line contains two integers xi, wi (1 ≤ xi,wi ≤ 108), xi shows how far the i-th bank is from the beginning of the street and wi shows the number of money in the bank. Positions of no two banks coincide. The banks are given in the increasing order of xi.

Output

Print two integer numbers — indicies of the required banks. The banks are numbered starting from 1 in the order in which they follow in the input data. You may print indicies in any order. If there are many solutions, print any of them. If no such pair of banks exists, print "-1 -1" (without quotes).

Sample Input

6 3

1 1

3 5

4 8

6 4

10 3

11 2

Sample Output

5 3

 

题意

给你n个银行,每次银行的位置x[i],金钱w[i], 现在让你选择两个不同的银行 使其距离大于等于D 且金钱和最大

输出选择的那两个银行,序号

题解:

我是先预处理出  i ~n 中 金钱最多的,序号是那个

再遍历一次,   二分当前x[i]+ d的 序号就好了, 即 与其距离满足大于等于d且 金钱最多的是哪一个银行 ,更新答案

#include <iostream>
#include <cstdio>
#include <cmath>
#include <cstring>
#include <algorithm>
using namespace std ;
typedef long long ll;

const int N = 1000000 + 50;
const ll inf = 100000000000;

ll x[N], w[N], M[N], H[N],n,d;
void init() {
    M[n+1] = -1;
    H[n + 1] = n+1;
    for(int i = n; i >= 1; i--) {
        if(w[i] >= M[i + 1]) M[i] = w[i], H[i] = i;
        else M[i] = M[i+1], H[i] = H[i + 1];
       // cout<<M[i]<<" "<<H[i]<<endl;
    }
}
int main() {
    scanf("%I64d%I64d",&n,&d);
    for(int i = 1; i <= n; i++) {
        scanf("%I64d%I64d",&x[i],&w[i]);
    }
    x[n + 1] = inf; w[n + 1] = -inf;
    init();
    ll ans = 0, ansl = -1, ansr = -1;
    for(int i = 1; i <= n; i++) {
        ll tmp = x[i] + d;
       int pos = lower_bound(x + 1, x + n + 2, tmp) - x;
       if(pos == n + 1) break;
        if(w[i] + w[H[pos]] > ans ) ans = w[i] + w[H[pos]], ansl = i, ansr = H[pos];
    }
    printf("%I64d %I64d
",ansl,ansr);
    return 0;
}
代码
原文地址:https://www.cnblogs.com/zxhl/p/5137779.html