Ivan comes again!

Time Limit: 1000ms   Memory limit: 65536K  有疑问?点这里^_^

题目描述

The Fairy Ivan gave Saya three problems to solve (Problem F). After Saya finished the first problem (Problem H), here comes the second.
This is the enhanced version of Problem H.
There is a large matrix whose row and column are less than or equal to 1000000000. And there are three operations for the matrix:
1)add: Mark an element in the matrix. The element wasn’t marked before it is marked.
2)remove: Delete an element’s mark. The element was marked before the element’s mark is deleted.
3)find: Show an element’s row and column, and return a marked element’s row and column, where the marked element’s row and column are larger than the showed element’s row and column respectively. If there are multiple solutions, return the element whose row is the smallest; and if there are still multiple solutions, return the element whose column is the smallest. If there is no solution, return -1.
Of course, Saya comes to you for help again.

输入

The input consists of several test cases.
The first line of input in each test case contains one integer N (0<N≤200000), which represents the number of operations.
Each of the next N lines containing an operation, as described above.
The last case is followed by a line containing one zero.

输出

For each case, print the case number (1, 2 …) first. Then, for each “find” operation, output the result. Your output format should imitate the sample output. Print a blank line after each test case.

示例输入

4
add 2 3
find 1 2
remove 2 3
find 1 2 0

示例输出

Case 1:
2 3
-1

提示

 

来源

 2010年山东省第一届ACM大学生程序设计竞赛

 
  STL模板库之set的使用
  这道题没有算法,纯粹是set的使用。
  因为要求的数组很大,开数组的话根本开不出来。
【set使用心得】
begin()  返回指向第一个元素的迭代器
ps:迭代器可以理解为“指针”,使用的使用和指针一样使用。
例如:
set <int> s;  //定义一个集合set
set <int>::iterator it; //定义一个set<int>的迭代器
it = s.begin();
cout<<*it<<endl; //输出迭代器指向的元素的值
或者:
set <pair<int,int>> s;
set <pair<int,int>>::iterator it;  //定义一个迭代器
it = s.begin();
cout<<it->first<<' '<<it->second<<endl;  //输出迭代器指向的元素的值

clear()   清除所有元素
count()   返回某个值元素的个数
empty()   如果集合为空,返回true(真)
end()    返回指向最后一个元素之后的迭代器,不是最后一个元素
equal_range()   返回集合中与给定值相等的上下限的两个迭代器
ps:某个值的[val)区间的两个值。>=val的第一个值作为下限,>val的第一个值作为上限
erase()   删除集合中的元素
ps:删除值为val的元素直接用s.erase(val);或者可以删除迭代器指向那个元素
find()    返回一个指向被查找到元素的迭代器
ps:注意返回的是一个迭代器
get_allocator() 返回集合的分配器
insert() 在集合中插入元素
ps:要插入某个元素,直接s.insert(val);即可
lower_bound()   返回指向大于(或等于)某值的第一个元素的迭代器
ps:返回>=val的第一个元素的迭代器
key_comp()     返回一个用于元素间值比较的函数
max_size()     返回集合能容纳的元素的最大限值
rbegin()  返回指向集合中最后一个元素的反向迭代器
rend()   返回指向集合中第一个元素的反向迭代器
size()   集合中元素的数目
swap()   交换两个集合变量
upper_bound()   返回大于某个值元素的迭代器
ps:返回>val的第一个元素的迭代器
value_comp()    返回一个用于比较元素间的值的函数

  这道题拿来熟悉STL很不错。

  代码
 #include <iostream>
#include <stdio.h>
#include <set>
#include <utility>
using namespace std;
int main()
{
int cnt,n;
for(cnt=;cin>>n;cnt++){
if(n==) break;
getchar();
int i;
char str[];
int a,b;
set < pair<int,int> > s;
set < pair<int,int> >::iterator it; //定义迭代器
cout<<"Case "<<cnt<<':'<<endl;
for(i=;i<=n;i++){
cin>>str>>a>>b;
switch(str[]){
case 'a':
s.insert(make_pair(a,b)); //像集合s中插入pair(a,b)
break;
case 'r':
s.erase(make_pair(a,b)); //将集合s中值为pair(a,b)的元素删掉
break;
case 'f':
it = s.upper_bound(make_pair(a,b)); //返回集合中大于pair(a,b)的第一个元素
for(;it!=s.end();it++) //找到第一个比pair(a,b)大的元素
if(it->first > a && it->second > b)
break;
if(it==s.end())
cout<<-<<endl;
else
cout<<it->first<<' '<<it->second<<endl;
break;
default:break;
}
}
cout<<endl;
}
return ;
}

Freecode : www.cnblogs.com/yym2013

sdut 2159:Ivan comes again!(第一届山东省省赛原题,STL之set使用)的更多相关文章

  1. sdut 2158:Hello World!(第一届山东省省赛原题,水题,穷举)

    Hello World! Time Limit: 1000MS Memory limit: 65536K 题目描述 We know that Ivan gives Saya three problem ...

  2. sdut 2152:Balloons(第一届山东省省赛原题,DFS搜索)

    Balloons Time Limit: 1000MS Memory limit: 65536K 题目描述 Both Saya and Kudo like balloons. One day, the ...

  3. sdut 2153:Clockwise(第一届山东省省赛原题,计算几何+DP)

    Clockwise Time Limit: 1000ms   Memory limit: 65536K  有疑问?点这里^_^ 题目描述 Saya have a long necklace with ...

  4. sdut 2154:Shopping(第一届山东省省赛原题,水题)

    Shopping Time Limit: 1000MS Memory limit: 65536K 题目描述 Saya and Kudo go shopping together.You can ass ...

  5. sdut 2165:Crack Mathmen(第二届山东省省赛原题,数论)

    Crack Mathmen Time Limit: 1000ms   Memory limit: 65536K  有疑问?点这里^_^ 题目描述  Since mathmen take securit ...

  6. sdut 2162:The Android University ACM Team Selection Contest(第二届山东省省赛原题,模拟题)

    The Android University ACM Team Selection Contest Time Limit: 1000ms   Memory limit: 65536K  有疑问?点这里 ...

  7. sdut 2163:Identifiers(第二届山东省省赛原题,水题)

    Identifiers Time Limit: 1000ms   Memory limit: 65536K  有疑问?点这里^_^ 题目描述  Identifier is an important c ...

  8. sdut 2603:Rescue The Princess(第四届山东省省赛原题,计算几何,向量旋转 + 向量交点)

    Rescue The Princess Time Limit: 1000ms   Memory limit: 65536K  有疑问?点这里^_^ 题目描述 Several days ago, a b ...

  9. sdut 2416:Fruit Ninja II(第三届山东省省赛原题,数学题)

    Fruit Ninja II Time Limit: 5000MS Memory limit: 65536K 题目描述 Have you ever played a popular game name ...

随机推荐

  1. ubuntu——Kconfig、.config、Makefile的关系

    原文地址:http://blog.csdn.net/estate66/article/details/5886816 ,本人对此文有改进. 当我们编写完一个驱动后,我们要把它以模块形式编译或者直接编译 ...

  2. 为啥Android手机总会越用越慢?

    转自:http://www.androidchina.net/818.html 根据第三方的调研数据显示,有77%的Android手机用户承认自己曾遭遇过手机变慢的影响,百度搜索“Android+卡慢 ...

  3. Ubuntu8.04系列-系统优化篇

    文章欢迎转载,转载请注明出处:嘉骏苑http://luckiss.blogcn.com  原文出处:http://luckiss.blogcn.com/diary,15151058.shtml    ...

  4. 怎样在tsung中使用动态參数(二)

    上一篇博客说过,在配置getOrderId请求时,能够用动态变量(order_id)解析和捕获服务端返回的json对象.这个变量能够作为接下来的订单确认请求(Confirm)的输入參数.看一下Conf ...

  5. 通达OA 几次通过OA进行的足球抢票活动确实对OA系统提出了非常大挑战

    今年集团赞助了中超的足球比赛,有比赛的时候会提前发一些球票.怎么发.发给谁这就是一个问题.后来确定通过OA来抢票. 通过在OA上发表帖子.通过信息提醒.大家看到信息提示后在帖子后面回复,依据回复先后确 ...

  6. 【已解决】vbox + ubuntu 设置 1366x768 分辨率

    1. 打开VBOX(Oracle VM VirtualBox),启动Ubuntu 2. 点击"设备>安装增强功能" 3. 进入Ubuntu打开文件管理器,如下图 4. 输入r ...

  7. 如何只利用NMAKE+CL+LINK写WIN32程序

    关键是1.包含<Windows.h>及其他的相关头文件2.在LINK指令中最起码要加上KERNEL32.LIB USER32.LIB GDI32.LIB(不需要制定其路径,因为NMAKE, ...

  8. 同一个String在使用不同的charset编码的时候equals仍然是返回true吗

    1.对于ASCII字符,是的(只要该charset涵盖了ASCII编码),使用任何charset编码都不会影响equals的判断 2.对于非ASCII字符,不一定.例如同中文字符串"你好&q ...

  9. 安装oracle11g 并且开启APEX 安装

    1.Windows下Oracle安装图解----oracle-win-64-11g 详细安装步骤 - souvc - 博客园 oracle 11g 下载网址   一. Oracle 下载   官方下地 ...

  10. 基于jdom 的 xmluti

    package cn.com.do1.wechat.common; import org.jdom.Attribute; import org.jdom.Document; import org.jd ...