#include #include #include #include #include #include #include using namespace std; typedef set Set; map IDcache; vector Setcache; int ID(Set x) { if(IDcache.count(x)) return IDcache[x]; Setcache.push_back(x); return IDcache[x]=Setcache.size()-1; } #define ALL(x) x.begin(),x.end() #define INS(x) inserter(x,x.begin()) void solve() { stack s; int n; cin>>n; string op; for(int i=0;i>op; if(op[0]=='P') s.push(ID(Set())); else if(op[0]=='D') s.push(s.top()); else { Set x1=Setcache[s.top()];s.pop(); Set x2=Setcache[s.top()];s.pop(); Set x; if(op[0]=='U') set_union(ALL(x1),ALL(x2),INS(x)); if(op[0]=='I') set_intersection(ALL(x1),ALL(x2),INS(x)); if(op[0]=='A') {x=x2;x.insert(ID(x1));} s.push(ID(x)); } cout<>T; while(T-->0) { IDcache.clear(); Setcache.clear(); solve(); } return 0; } /* 0 0 1 0 1 1 2 2 2 *** 0 0 1 0 0 *** */