Pagini recente » Cod sursa (job #388792) | Cod sursa (job #256787) | Cod sursa (job #1130831) | Cod sursa (job #1769375) | Cod sursa (job #2743572)
#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)
{
out << (table.find(x) != table.end()) << "\n";
}
}
return 0;
}