D. Leaving Auction
time limit per test:

2 seconds

memory limit per test:256 megabytes
input:standard input
output:standard output

There are n people taking part in auction today. The rules of auction are classical. There were n bids made, though it's not guaranteed they were from different people. It might happen that some people made no bids at all.

Each bid is define by two integers (ai, bi), where ai is the index of the person, who made this bid and bi is its size. Bids are given in chronological order, meaning bi < bi + 1 for all i < n. Moreover, participant never makes two bids in a row (no one updates his own bid), i.e. ai ≠ ai + 1 for all i < n.

Now you are curious with the following question: who (and which bid) will win the auction if some participants were absent? Consider that if someone was absent, all his bids are just removed and no new bids are added.

Note, that if during this imaginary exclusion of some participants it happens that some of the remaining participants makes a bid twice (or more times) in a row, only first of these bids is counted. For better understanding take a look at the samples.

You have several questions in your mind, compute the answer for each of them.

Input

The first line of the input contains an integer n (1 ≤ n ≤ 200 000) — the number of participants and bids.

Each of the following n lines contains two integers ai and bi (1 ≤ ai ≤ n, 1 ≤ bi ≤ 109, bi < bi + 1) — the number of participant who made the i-th bid and the size of this bid.

Next line contains an integer q (1 ≤ q ≤ 200 000) — the number of question you have in mind.

Each of next q lines contains an integer k (1 ≤ k ≤ n), followed by k integers lj (1 ≤ lj ≤ n) — the number of people who are not coming in this question and their indices. It is guarenteed that lj values are different for a single question.

It's guaranteed that the sum of k over all question won't exceed 200 000.

Output

For each question print two integer — the index of the winner and the size of the winning bid. If there is no winner (there are no remaining bids at all), print two zeroes.

Examples
input
  1. 6
    1 10
    2 100
    3 1000
    1 10000
    2 100000
    3 1000000
    3
    1 3
    2 2 3
    2 1 2
output
  1. 2 100000
    1 10
    3 1000
input
  1. 3
    1 10
    2 100
    1 1000
    2
    2 1 2
    2 2 3
output
  1. 0 0
    1 10
Note

Consider the first sample:

  • In the first question participant number 3 is absent so the sequence of bids looks as follows:
    1. 1 10
    2. 2 100
    3. 1 10 000
    4. 2 100 000

    Participant number 2 wins with the bid 100 000.

  • In the second question participants 2 and 3 are absent, so the sequence of bids looks:
    1. 1 10
    2. 1 10 000

    The winner is, of course, participant number 1 but the winning bid is 10 instead of 10 000 as no one will ever increase his own bid (in this problem).

  • In the third question participants 1 and 2 are absent and the sequence is:
    1. 3 1 000
    2. 3 1 000 000

    The winner is participant 3 with the bid 1 000.


    题目链接:http://codeforces.com/problemset/problem/749/D

题意:有n次竞价,每次竞价格式为ai和bi(ai表示第i次竞标人的编号,bi表示第i次竞标的价格)。bi < bi + 1。自己不和自己竞标,即ai != ai + 1。q次询问,每次询问中有k中标号无效竞标,求每次询问后物品竞标编号和价格。

思路:set+二分。把每个人竞标的最高价和标号存储入set。每次询问,从set中删除k中标号。如果最后set为空,那么说明无人竞标输出0 0;如果set大小为1,那么说明只有一个人竞标,只需输出最低价格。如果set大小大于1,那么set中价格最高的标号为pos的人竞标成功。但是自己不能和自己竞标,所以最后的竞标价格为在pos所有的竞标价格中二分大于set中价格第二高的价格,为最终价格。

代码:

  1. #include<iostream>
  2. #include<cstdio>
  3. #include<algorithm>
  4. #include<set>
  5. #include<map>
  6. #include<vector>
  7. using namespace std;
  8. const int MAXN=2e5+;
  9. vector<int>v[MAXN];
  10. int vis[MAXN],Max[MAXN];
  11. int del[MAXN];
  12. int main()
  13. {
  14. int n;
  15. scanf("%d",&n);
  16. for(int i=; i<=n; i++)
  17. {
  18. int a,b;
  19. scanf("%d%d",&a,&b);
  20. v[a].push_back(b);
  21. vis[a]=;
  22. Max[a]=max(Max[a],b);
  23. }
  24. set<pair<int,int> >s;
  25. for(int i=; i<=n; i++)
  26. if(vis[i]) s.insert(make_pair(Max[i],i));
  27. int q;
  28. scanf("%d",&q);
  29. while(q--)
  30. {
  31. int k;
  32. scanf("%d",&k);
  33. for(int i=; i<=k; i++)
  34. {
  35. scanf("%d",&del[i]);
  36. if(vis[del[i]]) s.erase(make_pair(Max[del[i]],del[i]));
  37. }
  38. if(s.size()==) cout<<<<" "<<<<endl;
  39. else if(s.size()==)
  40. cout<<s.begin()->second<<" "<<v[s.begin()->second][]<<endl;
  41. else
  42. {
  43. set<pair<int,int> >::iterator it=s.end();
  44. it--;
  45. int pos=it->second;
  46. it--;
  47. int num=it->first;
  48. int ans=upper_bound(v[pos].begin(),v[pos].end(),num)-v[pos].begin();
  49. cout<<pos<<" "<<v[pos][ans]<<endl;
  50. }
  51. for(int i=; i<=k; i++)
  52. if(vis[del[i]]) s.insert(make_pair(Max[del[i]],del[i]));
  53. }
  54. return ;
  55. }

Codeforces 749D. Leaving Auction set+二分的更多相关文章

  1. codeforces 749D Leaving Auction(二分)

    题目链接:http://codeforces.com/problemset/problem/749/D 题意:就是类似竞拍,然后报价肯定要比上一个高,然后查询输入k个数表示那些人的竞拍无效, 输出最后 ...

  2. CodeForces 749D Leaving Auction

    二分查找,$set$. 对于某一次询问,如果把人删光了,那么输出$0$ $0$. 如果只剩下$1$个人,那么输出那个人喊的最低价格. 如果剩下的人数有大于等于两个, 这时最底下出现的情景必然是红色部分 ...

  3. cf 749D Leaving Auction

    Leaving Auction time limit per test 2 seconds memory limit per test 256 megabytes input standard inp ...

  4. CF749D Leaving Auction set排序查找

    CodeForces 749D. Leaving Auction 传送门 There are n people taking part in auction today. The rules of a ...

  5. Leaving Auction

    Leaving Auction 题目链接:http://codeforces.com/contest/749/problem/D 二分 本来以为是哪种神奇的数据结构,没想到sort+lower_bon ...

  6. Codeforces 749D:Leaving Auction(set+二分)

    http://codeforces.com/contest/749/problem/D 题意:有几个人在拍卖场竞价,一共有n次喊价,有q个询问,每一个询问有一个num,接下来num个人从这次拍卖中除去 ...

  7. 【codeforces 749D】Leaving Auction

    [题目链接]:http://codeforces.com/problemset/problem/749/D [题意] 有n个人在竞价; 按照时间的顺序给出n次竞价(可能有一些人没有参加竞价); 每次竞 ...

  8. Leaving Auction CodeForces - 749D (set,贪心,模拟)

    大意: 若干个人参加拍卖会, 给定每个人出价顺序, 保证价格递增, q个询问, 给出k个人的编号, 求删除这k个人的所有出价后, 最终谁赢, 他最少出价多少. set维护每个人最后一次投票的时间, 每 ...

  9. Leaving Auction CF 749D

    题目:http://codeforces.com/problemset/problem/749/D 题目大意: 有n个人竞拍,也有n个叫牌,一个人可以有多个叫价牌,但也可能有一些人根本不叫价 每个叫牌 ...

随机推荐

  1. webuploader.js

    PHP  多图上传,图片批量上传插件,webuploader.js,百度文件上传插件(案例教程) WebUploader作用: 使用WebUploader还可以批量上传文件.支持缩略图等等众多参数选项 ...

  2. linux移植常见问题

    *************1.给板子添加新的驱动**************** 一.       驱动程序编译进内核的步骤在 linux 内核中增加程序需要完成以下三项工作:1. 将编写的源代码复制 ...

  3. IE 兼容background-size

    1:修改src *background-size: cover;//兼容ie的background-size filter: progid:DXImageTransform.Microsoft.Alp ...

  4. Debug模块

    [Debug模块] 一个用于控制日志输出的模块. 参考: 1.http://www.jianshu.com/p/6b9833748f36 2.https://www.npmjs.com/package ...

  5. SOA 是什么

    SOA 英文:Service-Oriented Architecture,面向服务的架构. 是一种面向通用集成服务的.松耦合的架构实现方式,是web时代服务发展的产物: 使用"分层" ...

  6. Appium1.6启动ios9.3报错Original error: Sdk '9.3.5' was not in list of simctl sdks

    问题: 使用Apppium1.6启动ios9.3报错Original error: Sdk '9.3.5' was not in list of simctl sdks   我的启动配置如下 {   ...

  7. css3修改滚动条样式

    /*滚动条整体样式*/ /*高宽分别对应横竖滚动条的尺寸*/ .content-box::-webkit-scrollbar{ width: 4px; height: 4px; } /*滚动条里面小方 ...

  8. 网页请求get方式

    方法都是博客中的大神写的,谢谢各路大神. 方法一:(亲测有效) //Get请求方式 private string RequestGet(string Url) { string PageStr = s ...

  9. Python开发【第三篇】:Python函数

    set     无序,不重复,可嵌套. 函数     创建函数:     1.def关键字,创建函数     2.函数名     3.()     4.函数体     5.返回值 发邮件函数 def ...

  10. Redis能干啥?细看11种Web应用场景[转]

    下面列出11种Web应用场景,在这些场景下可以充分的利用Redis的特性,大大提高效率. 1.在主页中显示最新的项目列表. Redis使用的是常驻内存的缓存,速度非常快.LPUSH用来插入一个内容ID ...