uva 12096 - The SetStack Computer(STL)

來源:互聯網
上載者:User

標籤:style   http   color   os   io   for   ar   amp   line   

題目連結:uva 12096 - The SetStack Computer

題目大意:一個棧,有5種操作;

  • PUSH:向棧中放一個空集合。
  • DUP:複製棧頂集合。
  • UNION:取棧頂的兩個集合,取並集後放回。
  • INTERSECT:取棧頂的兩個集合,取交集後放回。
  • ADD:取棧頂兩個集合,將第一個集合作為元素放到第二個集合中,並將第二個集合放回棧。

每次操作後輸出棧定集合中元素的個數。

解題思路:將所有集合映射成一個值,用map記錄,然後類比操作即可。

#include <cstdio>#include <cstring>#include <set>#include <map>#include <stack>#include <algorithm>using namespace std;typedef set<int> sint;typedef set<int>::iterator iter;int hn;stack<sint> stak;map<sint, int> g;void hashadd (sint u) {    if (g.count(u))        return;    g[u] = hn++;}void putsize () {    if (stak.empty())        return;    printf("%d\n", (int)stak.top().size());}void sf_push () {    sint u;    hashadd(u);    stak.push(u);}void sf_dup () {    sint u = stak.top();    stak.push(u);}void sf_union () {    sint f = stak.top();    stak.pop();    sint u = stak.top();    stak.pop();    for (iter i = f.begin(); i != f.end(); i++)        u.insert(*i);    hashadd(u);    stak.push(u);}void sf_inct () {    sint u;    sint f = stak.top();    stak.pop();    sint s = stak.top();    stak.pop();    for (iter i = f.begin(); i != f.end(); i++) {        if (s.count(*i))            u.insert(*i);    }    hashadd(u);    stak.push(u);}void sf_add () {    sint f = stak.top();    stak.pop();    sint s = stak.top();    stak.pop();    s.insert(g[f]);    hashadd(s);    stak.push(s);}void solve () {    char order[10];    scanf("%s", order);    switch (order[0]) {        case ‘P‘:            sf_push();            break;        case ‘D‘:            sf_dup();            break;        case ‘U‘:            sf_union();            break;        case ‘I‘:            sf_inct();            break;        case ‘A‘:            sf_add();            break;    }    putsize();}int main () {    int cas, n;    scanf("%d", &cas);    while (cas--) {        hn = 0;        g.clear();        while (!stak.empty())            stak.pop();        scanf("%d", &n);        while (n--)            solve();        printf("***\n");    }    return 0;}

uva 12096 - The SetStack Computer(STL)

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.