TEMPLEQ - Temple Queues


main-destinations-tirupati

The Tirumala temple is the most visited place of worship in the world. As the number of pilgrims who visit the temple each day is very high, the head of the temple should keep monitoring the queue system. Today is another lovely day and he has started his work. There are N queues at the entrance of the temple and some of them are already filled with pilgrims. Each queue has a metal door at the beginning, which leads to the temple. When the door is opened, it allows only one pilgrim to get through it and it gets closed immediately after that.

New pilgrims are rushing in to the queues and the head needs to monitor the current sizes of the queues and decide which doors to be opened. At any time, he wants to know how many queues currently have at least X pilgrims. He also decides an integer Y and wants to open the doors of all the queues having at least Y pilgrims at that time. You are the controller of the queue system and are following his instructions. Respond quickly and win yourself a big laddu (sweet) from him :) .

Read the input section for rest of the details.

Input

The first line contains two integers N and Q. N - The number of queues [1 <= N <= 100,000], Q - The number of queries [0 <= Q <= 500,000]. The second line contains N integers, which are the initial sizes of the queues. ith integer (1-based) is the initial size of queue i [0 <= initial size <= 100,000,000]

Each of the next Q lines is one of the following:

  • 1 A [One pilgrim enters the queue# A (1 <= A <= N)]
  • 2 X [Find the number of queues having at least X pilgrims currently (0 <= X <= 1,000,000,000)]
  • 3 Y [Open the doors of all the queues having at least Y pilgrims (1 <= Y <= 1,000,000,000), and thus allowing only one pilgrim to enter the temple from each of them]

Output

For each query of type "2 X" , print the answer in a new line.

Example

Input:
5 6
20 30 10 50 40
2 31
1 2
2 31
3 11
2 20
2 50

Output:
2
3
3
0

Note:

  • Ideal time limit should be 2s. It has been increased to 7s, to let Java solutions pass, as the I/O is huge. Edit: now 1s after server update.

  • There are multiple test sets, and the judge shows the sum of the time taken over all test sets of your submission, if accepted.


hide comments
sayantan ghosh: 2015-07-28 15:14:53

can someone provide good testcases?I am getting wa.

Jannatul Ferdows Jenny: 2015-07-08 13:12:16

Very unique problem. Kudos to setter.

Archit Jain: 2014-07-09 16:31:15

Nice !!

Last edit: 2017-03-26 19:16:31
random: 2011-05-31 17:19:47

fast i/o really reduced the run time by a lot !
it brought down from 6.27 to 2.69 seconds just as i added the fast i/o snippet ! :)

Last edit: 2011-05-31 17:23:00
Ravi Kiran: 2011-05-30 07:21:42

Nice problem.

Last edit: 2011-05-30 12:30:43
Anil Kishore: 2011-02-26 14:51:24

This increase in time limit makes a O( n log n + q log^2 n ) pass too, while we expected a O( ( n + q ) log n ). If you are using C / C++, then a total time of around 6s ( on all test sets ) is better.

PS: Wish we can set separate time limits on Java like languages !


Added by:Anil Kishore
Date:2011-02-25
Time limit:1s
Source limit:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:All except: ASM64
Resource:CodeMutants 2011 , DA-IICT, India