Pagini recente » Cod sursa (job #1804160) | Cod sursa (job #1437378) | Cod sursa (job #1959427) | Cod sursa (job #2360692) | Cod sursa (job #2623706)
#include <bits/stdc++.h>
using namespace std;
ifstream fin("hashuri.in");
ofstream fout("hashuri.out");
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;
//hashmap.insert(make_pair(element, true));
break;
case 2:
fin >> element;
hashmap[element] = false;
break;
case 3:
fin >> element;
if (hashmap[i] == true)
fout << 1 << endl;
else
fout << 0 << endl;
break;
default:
break;
}
}
return 0;
}