In the event of technical difficulties with Szkopuł, please contact us via email at [email protected].
If you would like to talk about tasks, solutions or technical problems, please visit our Discord servers. They are moderated by the community, but members of the support team are also active there.
Byteasar works for the BAJ company, which sells computer games. The BAJ company cooperates with many courier companies that deliver the games sold by the BAJ company to its customers. Byteasar is inspecting the cooperation of the BAJ company with the couriers. He has a log of successive packages with the courier company that made the delivery specified for each package. He wants to make sure that no courier company had an unfair advantage over the others.
If a given courier company delivered more than half of all packages sent in some period of time, we say that it dominated in that period. Byteasar wants to find out which courier companies dominated in certain periods of time, if any.
Help Byteasar out! Write a program that determines a dominating courier company or that there was none.
The first line of the standard input contains two integers, and (), separated by a single space, that are the number of packages shipped by the BAJ company and the number of time periods for which the dominating courier is to be determined, respectively. The courier companies are numbered from to (at most) .
The second line of input contains integers, (), separated by single spaces; is the number of the courier company that delivered the -th package (in shipment chronology).
The lines that follow specify the time period queries, one per line. Each query is specified by two integers, and (), separated by a single space. These mean that the courier company dominating in the period between the shipments of the -th and the -th package, including those, is to be determined.
In tests worth of total score, the condition holds, and in tests worth of total score .
The answers to successive queries should be printed to the standard output, one per line. (Thus a total of lines should be printed.) Each line should hold a single integer: the number of the courier company that dominated in the corresponding time period, or if there was no such company.
For the input data:
7 5 1 1 3 2 3 4 3 1 3 1 4 3 7 1 7 6 6
the correct result is:
1 0 3 0 4
Task author: Jacek Tomasiewicz.
<Submit a solution> [0/100]