Pagini recente » Cod sursa (job #496459) | Cod sursa (job #1793394) | Cod sursa (job #1673335) | Cod sursa (job #2970977) | Cod sursa (job #2623698)
#include <bits/stdc++.h>
using namespace std;
ifstream fin("hashuri.in");
ofstream fout("hashuri.out");
vector<bool> hashmap(200000000);
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;
}