CF1179C.Serge and Dining Room
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Serge came to the school dining room and discovered that there is a big queue here. There are m pupils in the queue. He's not sure now if he wants to wait until the queue will clear, so he wants to know which dish he will receive if he does. As Serge is very tired, he asks you to compute it instead of him.
Initially there are n dishes with costs a1,a2,…,an . As you already know, there are the queue of m pupils who have b1,…,bm togrogs respectively (pupils are enumerated by queue order, i.e the first pupil in the queue has b1 togrogs and the last one has bm togrogs)
Pupils think that the most expensive dish is the most delicious one, so every pupil just buys the most expensive dish for which he has money (every dish has a single copy, so when a pupil has bought it nobody can buy it later), and if a pupil doesn't have money for any dish, he just leaves the queue (so brutal capitalism...)
But money isn't a problem at all for Serge, so Serge is buying the most expensive dish if there is at least one remaining.
Moreover, Serge's school has a very unstable economic situation and the costs of some dishes or number of togrogs of some pupils can change. More formally, you must process q queries:
- change ai to x . It means that the price of the i -th dish becomes x togrogs.
- change bi to x . It means that the i -th pupil in the queue has x togrogs now.
Nobody leaves the queue during those queries because a saleswoman is late.
After every query, you must tell Serge price of the dish which he will buy if he has waited until the queue is clear, or −1 if there are no dishes at this point, according to rules described above.
输入格式
The first line contains integers n and m ( 1≤n,m≤300 000 ) — number of dishes and pupils respectively. The second line contains n integers a1,a2,…,an ( 1≤ai≤106 ) — elements of array a . The third line contains m integers b1,b2,…,bm ( 1≤bi≤106 ) — elements of array b . The fourth line conatins integer q ( 1≤q≤300 000 ) — number of queries.
Each of the following q lines contains as follows:
- if a query changes price of some dish, it contains 1 , and two integers i and x ( 1≤i≤n , 1≤x≤106 ), what means ai becomes x .
- if a query changes number of togrogs of some pupil, it contains 2 , and two integers i and x ( 1≤i≤m , 1≤x≤106 ), what means bi becomes x .
输出格式
For each of q queries prints the answer as the statement describes, the answer of the i -th query in the i -th line (the price of the dish which Serge will buy or −1 if nothing remains)
输入输出样例
输入#1
1 1 1 1 1 1 1 100
输出#1
100
输入#2
1 1 1 1 1 2 1 100
输出#2
-1
输入#3
4 6 1 8 2 4 3 3 6 1 5 2 3 1 1 1 2 5 10 1 1 6
输出#3
8 -1 4
说明/提示
In the first sample after the first query, there is one dish with price 100 togrogs and one pupil with one togrog, so Serge will buy the dish with price 100 togrogs.
In the second sample after the first query, there is one dish with price one togrog and one pupil with 100 togrogs, so Serge will get nothing.
In the third sample after the first query, nobody can buy the dish with price 8 , so Serge will take it. After the second query, all dishes will be bought, after the third one the third and fifth pupils will by the first and the second dishes respectively and nobody will by the fourth one.