Pagini recente » Cod sursa (job #1153668) | Cod sursa (job #1848618) | Cod sursa (job #131144) | Cod sursa (job #2194579) | Cod sursa (job #2743571)
#include <bits/stdc++.h>
using namespace std;
ifstream in("hashuri.in");
ofstream out("hashuri.out");
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;
}