Pagini recente » Cod sursa (job #201765) | redsnow_3 | Cod sursa (job #1323740) | Cod sursa (job #1175520) | Cod sursa (job #2743569)
#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;
}