iT邦幫忙

0

<<Sets-STL>> _HakerRank_C++_STL

  • 分享至 

  • xImage
  •  
#include <cmath>
#include <cstdio>
#include <vector>
#include <iostream>
#include <set>
#include <algorithm>
using namespace std;


int main() {
    /* Enter your code here. Read input from STDIN. Print output to STDOUT */ 

    int q = 0, x = 0, y = 0;
    cin >> q ;
    
    set<int> s ;
    set<int> it ;
    for(int i = 0 ; i < q ; i++)
    {
        cin >> x >> y ;
        switch (x)
        {
            case 1 : 
                s.insert(y);
                break;
            case 2 :
                s.erase(y);
                break;
            case 3 :
                if(s.find(y) != s.end()) cout << "Yes\n" ;
                else cout << "No\n" ;
                break;
        }
    }
        
    return 0;
}





圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言