UVa 12096 (STL) The SetStack Computer

來源:互聯網
上載者:User

標籤:

題意:

有一個集合棧電腦,棧中的元素全部是集合,還有一些相關的操作。輸出每次操作後棧頂集合元素的個數。

分析:

這個題感覺有點抽象,集合還能套集合,倒是和題中配的套娃那個圖很貼切。

把集合映射成ID,就可以用 stack<int>來類比題中的集合棧,然後用 vector<Set> 來根據下標進行集合的索引。

代碼雖短,但還須多體會。

 1 #include <cstdio> 2 #include <string> 3 #include <vector> 4 #include <stack> 5 #include <set> 6 #include <map> 7 #include <iostream> 8 #include <algorithm> 9 using namespace std;10 11 typedef set<int> Set;12 map<Set, int> IDcache;13 vector<Set> Setcache;14 15 #define ALL(x) x.begin(),x.end()16 #define INS(x) inserter(x,x.begin())17 18 int ID(Set x)19 {20     if(IDcache.count(x)) return IDcache[x];21     Setcache.push_back(x);22     return IDcache[x] = Setcache.size() - 1;23 }24 25 int main()26 {27     //freopen("in.txt", "r", stdin);28 29     int T;30     scanf("%d", &T);31     while(T--)32     {33         stack<int> s;34         int n;35         scanf("%d", &n);36         for(int i = 0; i < n; ++i)37         {38             string op;39             cin >> op;40             if(op[0] == ‘P‘) s.push(ID(Set()));41             else if(op[0] == ‘D‘) s.push(s.top());42             else43             {44                 Set x1 = Setcache[s.top()]; s.pop();45                 Set x2 = Setcache[s.top()]; s.pop();46                 Set x;47                 if(op[0] == ‘U‘) set_union(ALL(x1), ALL(x2), INS(x));48                 if(op[0] == ‘I‘) set_intersection(ALL(x1), ALL(x2), INS(x));49                 if(op[0] == ‘A‘) { x = x2; x.insert(ID(x1)); }50                 s.push(ID(x));51             }52             printf("%d\n", Setcache[s.top()].size());53         }54 55         puts("***");56     }57 58     return 0;59 }
代碼君

 

UVa 12096 (STL) The SetStack Computer

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.