码迷,mamicode.com
首页 > 其他好文 > 详细

uva12096集合栈计算机

时间:2015-02-09 12:59:37      阅读:219      评论:0      收藏:0      [点我收藏+]

标签:uva   uva12096   uva12096集合栈计算机   

背景:这道题出现在我学习c++的stl中,对现在还不了解stl的人来说,确实显得太难了,只有照着书打下代码,然后一步一步的理解。

思路:由于本题的的集合并不是简单的整数集合或者字符串集合,所以就用map建立映射关系,而再建立映射关系的时候,又运用了vector协助,这样就能很明确的使得每个集合都有一个ID,然后就是堆栈的一些操作了。

学习:stl里面一些知识的简单运用。

#include <iostream>
#include <set>
#include <map>
#include <stack>
#include <vector>
#include <algorithm>
using namespace std;
typedef set<int> Set;
map<Set,int> IDcache;
vector<Set> Setcache;
int ID(Set x)
{
    if(IDcache.count(x)) return IDcache[x];
    Setcache.push_back(x);
    return IDcache[x]=Setcache.size()-1;
}
#define ALL(x) x.begin(),x.end()
#define INS(x) inserter(x,x.begin())
stack<int> s;
int main(void)
{
    int n;
    cin>>n;
    while(n--)
    {
        int m;
        cin>>m;
        for(int i=0;i<m;i++)
        {
            string op;
            cin>>op;
            if(op[0]==‘P‘) s.push(ID(Set()));
            else if(op[0]==‘D‘) s.push(s.top());
            else
            {
                Set x1=Setcache[s.top()];s.pop();
                Set x2=Setcache[s.top()];s.pop();
                Set x;
                if(op[0]==‘U‘) set_union(ALL(x1),ALL(x2),INS(x));
                if(op[0]==‘I‘) set_intersection(ALL(x1),ALL(x2),INS(x));
                if(op[0]==‘A‘) {x=x2;x.insert(ID(x1));}
                s.push(ID(x));
            }
            cout<<Setcache[s.top()].size()<<endl;
        }
        cout<<"***"<<endl;
    }
    return 0;
}

uva12096集合栈计算机

标签:uva   uva12096   uva12096集合栈计算机   

原文地址:http://blog.csdn.net/qiweigo/article/details/43667749

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!