Cod sursa(job #2589385)

Utilizator OvidRata Ovidiu Ovid Data 26 martie 2020 11:40:49
Problema Hashuri Scor 70
Compilator cpp-64 Status done
Runda Arhiva educationala Marime 0.48 kb
#include<bits/stdc++.h>
using namespace std;
#define mp make_pair
#define pb push_back
#define ft first
#define sc second
#define ll long long
ifstream fin("hashuri.in"); ofstream fout("hashuri.out");




int q;
map<int, bool> h;


int main(){
fin>>q;

for(;q;q--){
    int o;
    int x;
    fin>>o;
    fin>>x;
    if(o==1){
        h[x]=true;
    }
    if(o==2){
        h[x]=false;
    }
    if(o==3){
        fout<<h[x]<<"\n";
    }
}




return 0;
}