#P4269. [USACO18FEB] Snow Boots G
[USACO18FEB] Snow Boots G
题目描述
It's winter on the farm, and that means snow! There are tiles on the path from the farmhouse to the barn, conveniently numbered , and tile is covered in feet of snow. In his farmhouse cellar, Farmer John has pairs of boots, numbered . Some pairs are more heavy-duty than others, and some pairs are more agile than others. In particular, pair lets FJ step in snow at most feet deep, and lets FJ move at most forward in each step.
Farmer John starts off on tile and must reach tile to wake up the cows. Tile is sheltered by the farmhouse roof, and tile 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 and (). The second line contains space-separated integers; the th integer is , the depth of snow on tile (). It's guaranteed that .
The next lines contain two space-separated integers each. The first integer on line is , the maximum depth of snow in which pair can step. The second integer on line is , the maximum step size for pair . It's guaranteed that and .
输出格式
The output should consist of lines. Line should contain a single integer: if Farmer John can trek from tile to tile wearing the th pair of boots, and otherwise.
8 7
0 3 8 5 6 9 0 0
0 5
0 6
6 2
8 1
10 1
5 3
150 7
0
1
1
0
1
1
1
提示
Problem credits: Dhruv Rohatgi