시간 제한메모리 제한제출정답맞힌 사람정답 비율
2 초 512 MB65292440.678%

문제

City X consists of N buildings, ordered in a row from west to east and numbered from 1 to N. Each building has a different height – an integer number, respectively h1, h2, …, hN. The city government plans to build a tower, which will be in the same row as the buildings (it can be before the first building, between any two of the buildings or after the last building). The tower will broadcast messages to the citizens. The tower must have height H, which should be different from all other buildings’ heights.

Due to some strange engineering ideas, the tower will be able to broadcast signals only to the west (to the beginning of the buildings’ row). The signals are also strange – they are rays which travel horizontally (parallel to the ground, which we consider as a straight line) and are emitted out of the whole body of the tower (from the top to the bottom). So we can imagine that the tower radiates a continuous band of signals with width equal to the tower’s height. When a ray hits a building, it stops. Each building receives the signals using a receiver located on its top. A building receives a message if at least one ray reaches its receiver.

In other words, a building numbered i will receive messages from the tower only when: the building i is to the west of the tower; i is not higher than the tower; and there is no other building j between them (j>i), which is higher than building i. 

Take a look at the example in the figure above: the buildings, which are able to receive messages are with numbers 2, 5, 6, and 9.

Only one tower will be built, however the city government has received offers for K tower variants, each of different height (and having different building cost). The offered towers are numbered from 1 to K. Each of these towers has its height, which is also different from all the heights of buildings in the town. The city leaders would like to know the maximal number of buildings, which would receive messages, for each of the offered K towers, before they make their decision which one to accept. Of course, calculations should be made assuming optimal placement of each tower.

Write a program towers to determine the maximum number of buildings, which would receive messages for each of the K offers. You will be given the row of buildings in the town (actually, their heights) and the heights of all offered towers. Certainly, you have to consider the optimal placement for each tower.

입력

Two space separated positive integers are given on the first row of the standard input: N and K – the number of buildings and the number of offered towers.

N space separated positive integers are input from the second row – the heights of the buildings in the town, ordered by the building numbers (from the first to the N-th).

The third row consists of K space separated positive integers – the heights of the offered towers.

출력

The program should write on a single row of the standard output K space separated non-negative integers: for each offer in the third input row – the maximal number of buildings which would receive messages, if the tower were built, assuming optimal placement.

제한

  • 1 ≤ N ≤ 1 000 000;
  • 1 ≤ K ≤ 100 000;
  • 1 ≤ height of each building and offered tower ≤ 109

예제 입력 1

16 3
200 170 155 90 150 140 40 30 185 160 50 110 80 15 70 35
165 180 120

예제 출력 1

5 6 4

힌트

Optimal locations of each tower are shown in the pictures below. 

Location of tower 1. Buildings that are able to receive messages are 10, 12, 13, 15, and 16

Location of tower 2. Buildings that are able to receive messages are 2, 3, 5, 6, 7, and 8

Location of tower 3. Buildings that are able to receive messages are 12, 13, 15 and, 16