博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
UVA 12096 STL map set 的使用
阅读量:5161 次
发布时间:2019-06-13

本文共 1740 字,大约阅读时间需要 5 分钟。

set这个容器也是STL库的一员,并且在algorithm内直接有 set_union set_intersection  这样求并集交集的操作

 

map 最方便的地方就是 支持下标访问

举例说明 :

1 #include
2 include
3 #include
4 #include
5 #include
6 #include
7 #include
8 #include
9 10 using namespace std;11 12 int main(void)13 {14 map
smap;15 smap["Hello"]=3;16 smap["World"]=1;17 string ss;18 cin>>ss;19 cout<

 

 

上面的是 map的用法 特殊的地方只有 15 16 行       而且很好理解 ,不做解释了

map<string,int> 简单理解指的就是  把 string作为下标 数组内的元素为int  

实际上是建立起 key-value 的一个对应关系  0.0

 

 

下面是题目pdf :

 

本题的思想就是 给每个集合一个独特的ID

同一个集合共享一个ID

代码如下

1 #include
2 #include
3 #include
4 #include
5 #include
6 #include
7 #include
8 #include
9 10 #define ALL(x) x.begin(),x.end()11 #define INS(x) inserter(x,x.begin())12 13 using namespace std;14 15 typedef set
Set;16 map
IDcache;17 vector
Setcache;18 19 int ID(Set x)20 {21 if(IDcache.count(x)) return IDcache[x];22 Setcache.push_back(x);23 return IDcache[x]=Setcache.size()-1;24 }25 26 int main(void)27 {28 stack
s;29 int n;30 int T;31 cin>>T;32 while(T--)33 {34 cin>>n;35 while(n--)36 {37 char op[10];38 scanf("%s",op);39 if(op[0]=='P')40 s.push(ID(Set()));41 else if(op[0]=='D')42 s.push(s.top());43 else44 {45 Set x1=Setcache[s.top()];s.pop();46 Set x2=Setcache[s.top()];s.pop();47 Set x;48 if(op[0]=='U')49 //x=set_union(ALL(x1),ALL(x2),INS(x));50 set_union(ALL(x1),ALL(x2),INS(x));51 if(op[0]=='I')52 //x=set_intersection(ALL(x1),ALL(x2),INS(x));53 set_intersection(ALL(x1),ALL(x2),INS(x));54 if(op[0]=='A')55 {x=x2;x.insert(ID(x1));}56 s.push(ID(x));57 }58 cout<
<

 

 
 
 

转载于:https://www.cnblogs.com/VOID-133/p/3915014.html

你可能感兴趣的文章
SAP HANA开发中常见问题- 基于SAP HANA平台的多团队产品研发
查看>>
游戏中的心理学(一):认知失调有前提条件
查看>>
WHAT I READ FOR DEEP-LEARNING
查看>>
【Ruby】Ruby在Windows上的安装
查看>>
Objective C 总结(十一):KVC
查看>>
BZOJ 3747 洛谷 3582 [POI2015]Kinoman
查看>>
vue实战(7):完整开发登录页面(一)
查看>>
[转载]mysql的left,right,substr,instr截取字符串,截取
查看>>
Visual Studio自定义模板(二)
查看>>
【Mood-20】滴滤咖啡做法 IT工程师加班必备 更健康的coffee 项目经理加班密鉴
查看>>
读《构建之法-软件工程》第四章有感
查看>>
使用 Printf via SWO/SWV 输出调试信息
查看>>
.net 分布式架构之分布式锁实现(转)
查看>>
吴恩达机器学习笔记 —— 3 线性回归回顾
查看>>
Problem E: Automatic Editing
查看>>
SpringBoot 使用 MyBatis 分页插件 PageHelper 进行分页查询
查看>>
《DSP using MATLAB》Problem 6.17
查看>>
微信公众平台开发实战Java版之如何网页授权获取用户基本信息
查看>>
一周TDD小结
查看>>
sizeof与strlen的用法
查看>>