12096 - The SetStack Computer (UVA)

题目链接如下:

Online Judge

这道题我一开始的思路大方向其实是对的,但细节怎么实现set到int的哈希没能想清楚(没想到这都能用map)。用set<string>的做法来做,测试数据小的话答案是对的,但大数据时间超时。

其实就是把所有set一一映射到int, 所以stack里每个元素就是int.

按照刘汝佳思路写的代码如下(按理每个case里stack应该先清空,但因为题目保证了没有无效操作+只需要最上面set的元素个数,不清空也没问题):

cpp 复制代码
#include <cstdio>
#include <set>
#include <stack>
#include <map>
#include <vector>
// #define debug

int T, N, a, b;
std::map<std::set<int>, int> mp;
char op[10];
std::stack<int> s;
std::set<int> empty;
std::vector<std::set<int>> vec;

void _push(std::set<int> st){
    if(!mp.count(st)){
        vec.push_back(st);
        mp[st] = vec.size() - 1;
    }
    s.push(mp[st]);
}

int main(){
    #ifdef debug
    freopen("0.txt", "r", stdin);
    freopen("1.txt", "w", stdout);
    #endif
    scanf("%d", &T);
    while(T--){
        scanf("%d", &N);
        vec.clear();
        mp.clear();
        while(N--){
            scanf("%s", op);
            if(op[0] == 'P'){
                _push(empty);
            } else{
                a = s.top();
                s.pop();
                if(op[0] == 'D'){
                    s.push(a);
                    s.push(a);
                } else{
                    b = s.top();
                    s.pop();
                    std::set<int> tmp;
                    if(op[0] == 'A'){
                        tmp = vec[b];
                        tmp.insert(a);
                    } else{
                        if(op[0] == 'U'){
                            tmp = vec[a];
                            for(auto it = vec[b].begin(); it != vec[b].end(); ++it){
                                tmp.insert(*it);
                            }
                        } else if(op[0] == 'I'){
                            for(auto it = vec[a].begin(); it != vec[a].end(); ++it){
                                if(vec[b].find(*it) != vec[b].end()){
                                    tmp.insert(*it);
                                }
                            }
                        }
                    }
                    _push(tmp);
                }
            }
            printf("%d\n", vec[s.top()].size());
        }
        printf("***\n");
    }
    #ifdef debug
    fclose(stdin);
    fclose(stdout);
    #endif
    return 0;
}

原先的代码如下(超时):

cpp 复制代码
#include <cstdio>
#include <set>
#include <stack>
#include <string>
// #define debug

int T, N;
char op[10];
std::stack<std::set<std::string>> s, empStack;
std::set<std::string> a, b, empty;

std::string toString(std::set<std::string> st){
    std::string str = "{";
    for(auto it = st.begin(); it != st.end(); ++it){
        str += (it == st.begin() ? "" : ",");
        str += *it;
    }
    return str + "}";
}

int main(){
    #ifdef debug
    freopen("0.txt", "r", stdin);
    freopen("1.txt", "w", stdout);
    #endif
    scanf("%d", &T);
    while(T--){
        scanf("%d", &N);
        s.swap(empStack);
        while(N--){
            scanf("%s", op);
            if(op[0] == 'P'){
                s.push(empty);
            } else{
                a = s.top();
                s.pop();
                if(op[0] == 'D'){
                    s.push(a);
                    s.push(a);
                } else{
                    b = s.top();
                    s.pop();
                    if(op[0] == 'A'){
                        b.insert(toString(a));
                        s.push(b);
                    } else{
                        if(op[0] == 'U'){
                            for(auto it = a.begin(); it != a.end(); ++it){
                                b.insert(*it);
                            }
                            s.push(b);
                        } else if(op[0] == 'I'){
                            std::set<std::string> intersect;
                            for(auto it = a.begin(); it != a.end(); ++it){
                                if(b.find(*it) != b.end()){
                                    intersect.insert(*it);
                                }
                            }
                            s.push(intersect);
                        }
                    }
                }
            }
            printf("%d\n", s.top().size());
        }
        printf("***\n");
    }
    #ifdef debug
    fclose(stdin);
    fclose(stdout);
    #endif
    return 0;
}
相关推荐
曦月逸霜23 分钟前
蓝桥杯高频考点——高精度(含C++源码)
c++·算法·蓝桥杯
敲上瘾39 分钟前
高并发内存池(二):Central Cache的实现
linux·服务器·c++·缓存·哈希算法
SNAKEpc121382 小时前
在MFC中使用Qt(五):MFC和Qt的共存和交互
c++·qt·mfc
我们的五年2 小时前
【Linux系统】进程间通信-System V消息队列
linux·运维·服务器·c++
laimaxgg2 小时前
数据结构B树的实现
开发语言·数据结构·c++·b树·算法
mit6.8242 小时前
[Lc6_记忆化搜索] 最长递增子序列 | 矩阵中的最长递增路径
c++·算法·leetcode
双叶8368 小时前
(C语言)虚数运算(结构体教程)(指针解法)(C语言教程)
c语言·开发语言·数据结构·c++·算法·microsoft
牵牛老人11 小时前
C++设计模式-责任链模式:从基本介绍,内部原理、应用场景、使用方法,常见问题和解决方案进行深度解析
c++·设计模式·责任链模式
序属秋秋秋11 小时前
算法基础_基础算法【高精度 + 前缀和 + 差分 + 双指针】
c语言·c++·学习·算法
KeithTsui12 小时前
GCC RISCV 后端 -- 控制流(Control Flow)的一些理解
linux·c语言·开发语言·c++·算法