#include <bits/stdc++.h>
using namespace std;
const int MAX_N=50001;
int main()
{
ios_base::sync_with_stdio(0);
cin.tie(0);
int n,m,q;
cin>>n>>m>>q;
vector<bitset<MAX_N>> sets;
try
{
sets.resize(n+m+1);
}
catch(...)
{
return 1;
}
for(int j=1; j<=n; j++)
{
for(int i=j; i<=n; i+=j)
{
sets[j].set(i);
}
}
bitset<MAX_N> mask;
for(int i=1; i<=n; i++)
{
mask.set(i);
}
for(int i=1; i<=m; i++)
{
int type;
cin>>type;
int target=n+i;
if(type==1)
{
int x,y;
cin>>x>>y;
sets[target]=sets[x] | sets[y];
}
else if(type==2)
{
int x,y;
cin>>x>>y;
sets[target]=sets[x] & sets[y];
}
else if(type==3)
{
int x;
cin>>x;
sets[target]=(~sets[x]) & mask;
}
}
for(int i=0; i<q; i++)
{
int x,v;
cin>>x>>v;
if(sets[x][v])
{
cout<<"TAK"<<endl;
}
else
{
cout<<"NIE"<<endl;
}
}
return 0;
}
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 | #include <bits/stdc++.h> using namespace std; const int MAX_N=50001; int main() { ios_base::sync_with_stdio(0); cin.tie(0); int n,m,q; cin>>n>>m>>q; vector<bitset<MAX_N>> sets; try { sets.resize(n+m+1); } catch(...) { return 1; } for(int j=1; j<=n; j++) { for(int i=j; i<=n; i+=j) { sets[j].set(i); } } bitset<MAX_N> mask; for(int i=1; i<=n; i++) { mask.set(i); } for(int i=1; i<=m; i++) { int type; cin>>type; int target=n+i; if(type==1) { int x,y; cin>>x>>y; sets[target]=sets[x] | sets[y]; } else if(type==2) { int x,y; cin>>x>>y; sets[target]=sets[x] & sets[y]; } else if(type==3) { int x; cin>>x; sets[target]=(~sets[x]) & mask; } } for(int i=0; i<q; i++) { int x,v; cin>>x>>v; if(sets[x][v]) { cout<<"TAK"<<endl; } else { cout<<"NIE"<<endl; } } return 0; } |
English