#5036. Problem 2. Grass Segments
Problem 2. Grass Segments
Problem 2. Grass Segments
USACO 2024 US Open Contest, Gold
Bessie is planting some grass on the positive real line. She has () different cultivars of grass, and will plant the th cultivar on the interval ().
In addition, cultivar grows better when there is some cultivar () such that cultivar and cultivar overlap with length at least (). Bessie wants to evaluate all of her cultivars. For each , compute the number of such that and overlap with length at least .
INPUT FORMAT (input arrives from the terminal / stdin):
The first line contains .
The next lines each contain three space-separated integers , , and .
OUTPUT FORMAT (print output to the terminal / stdout):
The answers for all cultivars on separate lines.
SAMPLE INPUT:
2 3 6 3 4 7 2
SAMPLE OUTPUT:
0 1
The overlaps of the cultivars is , which has length , which is at least but not at least .
SAMPLE INPUT:
4 3 6 1 2 5 1 4 10 1 1 4 1
SAMPLE OUTPUT:
3 3 2 2
SAMPLE INPUT:
5 8 10 2 4 9 2 3 7 4 5 7 1 2 7 1
SAMPLE OUTPUT:
0 3 1 3 3
SCORING: Input 4-5: Inputs 6-11: is the same for all intervalsInputs 12-20: No additional constraints. In addition, for Inputs 5, 7, ..., 19, for all .
Problem credits: Benjamin Qi