#include using namespace std; typedef signed long long ll; #undef _P #define _P(...) (void)printf(__VA_ARGS__) #define FOR(x,to) for(x=0;x<(to);x++) #define FORR(x,arr) for(auto& x:arr) #define ITR(x,c) for(__typeof(c.begin()) x=c.begin();x!=c.end();x++) #define ALL(a) (a.begin()),(a.end()) #define ZERO(a) memset(a,0,sizeof(a)) #define MINUS(a) memset(a,0xff,sizeof(a)) //------------------------------------------------------- template class BIT { public: V bit[1< bt; int N; int A[101010],B[101010],C[101010]; void solve() { int i,j,k,l,r,x,y; string s; vector cand; cin>>N; ll ret=0; FOR(i,N) { cin>>A[i]>>B[i]>>C[i]; if(A[i]==0) { cand.push_back(B[i]); } else { cand.push_back(B[i]); cand.push_back(C[i]+1); } } sort(ALL(cand)); cand.erase(unique(ALL(cand)),cand.end()); FOR(i,N) { if(A[i]==0) { x=lower_bound(ALL(cand),B[i])-cand.begin(); bt.add(x,C[i]); } else { x=lower_bound(ALL(cand),B[i])-cand.begin(); y=lower_bound(ALL(cand),C[i]+1)-cand.begin(); ret+=bt(y)-bt(x); } } cout<