A776.Snow Boots--Silver

提高+/省选-

USACO

通过率:0%

时间限制:1.00s

内存限制:128MB

题目描述

It's winter on the farm, and that means snow! There are NN tiles on the path
from the farmhouse to the barn, conveniently numbered 1N1 \dots N, and tile
ii is covered in fif_i feet of snow.
In his farmhouse cellar, Farmer John has BB pairs of boots, numbered 1B1 \dots B. Some pairs are more heavy-duty than others, and some pairs are more agile
than others. In particular, pair ii lets FJ step in snow at most sis_i feet
deep, and lets FJ move at most did_i forward in each step.
Farmer John starts off on tile 11 and must reach tile NN to wake up the
cows. Tile 11 is sheltered by the farmhouse roof, and tile NN is sheltered
by the barn roof, so neither of these tiles has any snow. Help Farmer John
determine which pairs of snow boots will allow him to make the trek.

输入格式

The first line contains two space-separated integers NN and BB (1N,B1051 \leq N,B \leq 10^5).
The second line contains NN space-separated integers; the iith integer is
fif_i, the depth of snow on tile ii (0fi1090 \leq f_i \leq 10^9). It's guaranteed
that f1=fN=0f_1 = f_N = 0.
The next BB lines contain two space-separated integers each. The first
integer on line i+2i+2 is sis_i, the maximum depth of snow in which pair ii
can step. The second integer on line i+2i+2 is did_i, the maximum step size for
pair ii. It's guaranteed that 0si1090 \leq s_i \leq 10^9 and 1diN11 \leq d_i \leq N-1.

输出格式

The output should consist of BB lines. Line ii should contain a single
integer: 11 if Farmer John can trek from tile 11 to tile NN wearing the
iith pair of boots, and 00 otherwise.

输入输出样例

  • 输入#1

    8 7
    0 3 8 5 6 9 0 0
    0 5
    0 6
    6 2
    8 1
    10 1
    5 3
    150 7
    

    输出#1

    0
    1
    1
    0
    1
    1
    1
    
首页