Pagini recente » Cod sursa (job #3126214) | Cod sursa (job #2432383) | Cod sursa (job #320908) | Cod sursa (job #1375383) | Cod sursa (job #2623671)
#include <bits/stdc++.h>
using namespace std;
ifstream fin("hashuri.in");
ofstream fout("hashuri.out");
set<int> multime;
map<int, bool> hashmap;
int main()
{
int choice, n;
int element;
fin >> n;
for (int i = 0; i < n; i++)
{
fin >> choice;
switch (choice)
{
case 1:
fin >> element;
hashmap[element] = true;
break;
case 2:
fin >> element;
hashmap[element] = false;
break;
case 3:
fin >> element;
if(hashmap[element])
fout << 1 << endl;
else
fout << 0 << endl;
break;
default:
break;
}
}
return 0;
}