Cod sursa(job #2743575)

Utilizator TonioAntonio Falcescu Tonio Data 23 aprilie 2021 11:47:58
Problema Hashuri Scor 100
Compilator cpp-64 Status done
Runda Arhiva educationala Marime 0.55 kb
#include <bits/stdc++.h>

using namespace std;

ifstream in("hashuri.in");
ofstream out("hashuri.out");

unordered_map <int, int> table;

int main()
{
int n, tip, x;
in >> n;
for(int i = 0; i < n; ++i)
{
    in >> tip >> x;
    if(tip == 1 and table.find(x) == table.end())
    {
        table[x] = 1;
    }
    else if(tip == 2)
    {
        table.erase(x);
    }
    else if(tip == 3)
    {
        if(table.find(x) != table.end())
            out << 1 << "\n";
        else
            out << 0 << "\n";
    }
}

    return 0;
}