5 4 1 3 3 7 10 0 3 6 11
The answers are positions 1, 2, 4, and -1 for the four query values.
1 2 4 -1
4 3 -5 -2 0 8 -3 8 9
The first values not smaller than the queries are at positions 2, 4, and none.
2 4 -1
3 3 2 2 2 1 2 3
All values are equal, so queries 1, 2, and 3 answer 1, 1, and -1.
1 1 -1
Given a non-decreasing array and qqq query values, answer each query with the first position whose value is at least the query value.