COCI '24 Contest 1 #2 Skokovi

View as PDF

Submit solution

Points: 7 (partial)
Time limit: 5.0s
Memory limit: 512M

Problem type

In a land who knows where, in a world who knows when, lives a bee named Maya. Her adventure-filled life is an endless source of ideas for tasks, so we chose one of them.

Maya's friend, a grasshopper named Filip, is preparing for the Olympics in flower jumping. The flowers in the meadow can be represented as a sequence of positive intergers a of length N. The height of each flower is given by the number a_i.

Filip always jumps from left to right. Additionally, since this whole sport is new to him, he cannot jump to a flower whose height differs too much from the one he is currently on. Specifically, from flower i, he can jump to flower j if and only if i < j and |a_i - a_j |\leq K, where K is a positive integer given in the input.

Help Maya plan Filip's training by determining which flowers Filip can reach if he starts on the leftmost flower. In other words, for each flower, determine if there is a sequence of jumps that leads to it, starting from the first flower.

Input Specification

The first line contains positive intergers N (1\leq N\leq 2\cdot 10^5) and K (1 \leq K \leq 10^9). The second line contains a sequence of positive intergers a, i.e., N numbers a_i (1\leq a_i\leq 10^9), representing the heights of the flowers.

Output Specification

In a single line, output N numbers, either 0 or 1, where each number indicates whether the corresponding flower is reachable. The number 0 means that it is not possible to reach that flower, while 1 means the flower is reachable. The first flower is always reachable as Filip starts from there.

Scoring

Subtask Points Constraints
1 20 Flower heights are strictly increasing.
2 25 N\leq 1\,000
3 25 No additional constraints.

Sample Input 1

5 2
5 4 8 7 2

Sample Output 1

1 1 0 1 1

Explanation for Sample Output 1

Filip can jump directly from the first flower to the second. The third flower is unreachable as Filip cannot jump to it from either the first or the second flower. To reach the fourth flower, Filip can also jump directly from the first flower. For the last flower, Filip needs to jump first to the second flower and then to the last flower.

Sample Input 2

5 3
10 15 14 8 9

Sample Output 2

1 0 0 1 1

Comments

There are no comments at the moment.