← Back to List

11723번: 집합 ↗

Solutions

C++14
645 B | 645 chars
#include <iostream>
using namespace std;
int M,N,Set[22];
string Q;
int main()
{
    ios_base::sync_with_stdio(false);
    cin.tie(0);
    cout.tie(0);
    
    cin>>M;
    for(int x=0; x<M; x++)
    {
        cin>>Q;
        if(Q == "all")
        {
            for(int x=1; x<=20; x++) Set[x]=1;
            continue;
        }
        else if(Q == "empty")
        {
            for(int x=1; x<=20; x++) Set[x]=0;
            continue;
        }
        cin>>N;
        if(Q == "add") Set[N]=1;
        else if(Q == "remove") Set[N]=0; 
        else if(Q == "check") cout<<Set[N]<<"\n";
        else if(Q == "toggle") Set[N]=1-Set[N];
    }
}