#include #include #include #include #include #include #include #include #include #include #include #include #include #include #include using namespace std; #define INT_MAX_VALUE 2147483647 #define LONG_LONG_MAX_VALUE 9223372036854775807 #define ll long long template T mymax(T a,T b){ if(a>=b) return a; return b; } template T mymin(T a,T b){ if(a<=b) return a; return b; } // //long long gcd(long long a, long long b){ // if(a:降順(大きいものから順番) //プライオリティキューの場合は > で、top()すると値の小さいものがとれる } //第1条件 return (riLeft.x) < (riRight.x); } }; class xxGreater2 { public: bool operator()(const XX& riLeft, const XX& riRight) const { //第2条件 if((riLeft.x) == (riRight.x)){ return riLeft.x < riRight.x;//<:昇順(小さいものから順番)、>:降順(大きいものから順番) //プライオリティキューの場合は > で、top()すると値の小さいものがとれる } //第1条件 return (riLeft.ix) < (riRight.ix); } }; // ////kruskal //struct edge{ // int u; // int v; // int cost; //}; // //bool comp(edge& e1,edge& e2){ // return e1.cost < e2.cost; //} // //edge es[1000]; // //long long kruskal(int V,int E){//V:頂点数,E:辺数 // sort(es,es+E,comp); // init(V); // long long res = 0; // for(int i=0;i prime_f(long long n){ // mapres; // for(int i=2;i*i<=n;i++){ // while(n%i==0){ // ++res[i]; // n/=i; // } // } // if(n!=1)res[n]=1; // return res; //} //#define NNN 1000000000 #define NNN 100 ll n,dat[2*NNN]; void init(ll n_){ n=1; while(n0){ k=(k-1)/2; dat[k]=dat[k*2+1]+dat[k*2+2];//中間節での値の持ちかた } } //[a,b)が求めたい区間、[r,l)の意味で、再帰で検査する節の区間を指定する。 //rの初期値は2の階乗で指定する。(つまりnを入れる) ll query(ll a,ll b,ll k,ll l, ll r){ if(r<=a || b<=l)return 0; if(a<=l && r<=b){ //cout << k << ":" << dat[k]<< endl; return dat[k]; } else{ ll vl=query(a,b,k*2+1,l,(l+r)/2); ll vr=query(a,b,k*2+2,(l+r)/2,r); return vl+vr;//中間節での値の持ちかた } } int main(int argc, const char * argv[]) { //std::ios::sync_with_stdio(false); //scanf("%s",S); //scanf("%d",&N); //sscanf(tmp.c_str(),"%dd%d%d",&time[i], &dice[i], &z[i]); //getline(cin, target); //cin >> x >> y; //テスト用 //ifstream ifs( "1_06.txt" ); //ifs >> a; //ここから //入力高速化 ios::sync_with_stdio(false); cin.tie(0); int Q; cin >> Q; int t[100000]; int x[100000]; XX A[100000]; XX B[100000]; ll rui=0; int QQ=0; for(int i=0;i> t[i] >> x[i]; if(t[i]==3){ rui+=x[i]; } if(t[i]==1){ A[i].x=x[i]-rui; A[i].ix=i; B[i].x=x[i]-rui; B[i].ix=i; QQ++; }else{ A[i].x=x[i]; A[i].ix=i; B[i].x=x[i]; B[i].ix=i; QQ++; } } sort(A,A+QQ,xxGreater()); sort(B,B+QQ,xxGreater()); for(int i=0;iB[target].x+rui){ l=(l+r)/2; }else{ r=(l+r)/2; } index++; } if(query(r,QQ,0,0,n)<=B[r].x+rui){ target=r; } ll ans; if(query(target,QQ,0,0,n)<=B[r].x+rui){ ans=query(target,QQ,0,0,n); }else{ ans=0; } cout << ans << endl; } //ここまで //cout << "debug" << endl; //cout << "ans" << endl;改行含む //printf("%.0f\n",ans);//小数点以下表示なし //printf("%.7f\n",p); //printf("%f\n",pow(2,ans.size())); return 0; }