408012: GYM102961 Z Nearest Smaller Values
Memory Limit:256 MB
Time Limit:2 S
Judge Style:Text Compare
Creator:
Submit:0
Solved:0
Description
Z. Nearest Smaller Valuestime limit per test2 secondsmemory limit per test256 megabytesinputstandard inputoutputstandard output
Given an array of $$$n$$$ integers, your task is to find for each array position the nearest position to its left having a smaller value.
InputThe first input line has an integer $$$n$$$: the size of the array.
The second line has $$$n$$$ integers $$$x_1,x_2,\dots,x_n$$$: the array values.
Constraints:
- $$$1 \le n \le 2\cdot 10^5$$$
- $$$1 \le x,a_i \le 10^9$$$
Print $$$n$$$ integers: for each array position the nearest position with a smaller value. If there is no such position, print $$$0$$$.
ExampleInput8 2 5 1 4 8 3 2 5Output
0 1 0 3 4 3 3 7