結果

問題 No.618 labo-index
ユーザー kmjpkmjp
提出日時 2017-12-18 00:33:54
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 251 ms / 6,000 ms
コード長 1,828 bytes
コンパイル時間 1,650 ms
コンパイル使用メモリ 170,024 KB
実行使用メモリ 19,696 KB
最終ジャッジ日時 2024-12-15 23:22:37
合計ジャッジ時間 7,697 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
11,616 KB
testcase_01 AC 4 ms
9,700 KB
testcase_02 AC 4 ms
15,716 KB
testcase_03 AC 4 ms
15,728 KB
testcase_04 AC 6 ms
15,760 KB
testcase_05 AC 7 ms
17,792 KB
testcase_06 AC 5 ms
15,728 KB
testcase_07 AC 5 ms
15,864 KB
testcase_08 AC 5 ms
17,784 KB
testcase_09 AC 6 ms
15,880 KB
testcase_10 AC 7 ms
17,684 KB
testcase_11 AC 6 ms
17,776 KB
testcase_12 AC 5 ms
15,748 KB
testcase_13 AC 6 ms
15,760 KB
testcase_14 AC 5 ms
15,748 KB
testcase_15 AC 6 ms
17,684 KB
testcase_16 AC 7 ms
17,804 KB
testcase_17 AC 6 ms
15,744 KB
testcase_18 AC 9 ms
17,828 KB
testcase_19 AC 215 ms
19,000 KB
testcase_20 AC 217 ms
18,196 KB
testcase_21 AC 219 ms
18,748 KB
testcase_22 AC 228 ms
18,356 KB
testcase_23 AC 237 ms
18,680 KB
testcase_24 AC 223 ms
18,564 KB
testcase_25 AC 230 ms
18,456 KB
testcase_26 AC 232 ms
18,088 KB
testcase_27 AC 234 ms
19,696 KB
testcase_28 AC 231 ms
18,320 KB
testcase_29 AC 228 ms
18,112 KB
testcase_30 AC 235 ms
18,688 KB
testcase_31 AC 228 ms
18,016 KB
testcase_32 AC 223 ms
18,468 KB
testcase_33 AC 228 ms
18,160 KB
testcase_34 AC 236 ms
13,968 KB
testcase_35 AC 251 ms
13,184 KB
testcase_36 AC 189 ms
19,208 KB
testcase_37 AC 225 ms
12,796 KB
testcase_38 AC 3 ms
9,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
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 V, int ME> class BIT {
public:
	V bit[1<<ME];
	V operator()(int e) {if(e<0) return 0;V s=0;e++;while(e) s+=bit[e-1],e-=e&-e; return s;}
	void add(int e,V v) { e++; while(e<=1<<ME) bit[e-1]+=v,e+=e&-e;}
};
BIT<ll,20> bt,bt2;

vector<int> V;
int Q;
ll T[101010],X[101010],F[101010],rev[101010];
int O[101010];

void solve() {
	int i,j,k,l,r,x,y; string s;
	
	cin>>Q;
	ll tadd=0;
	FOR(i,Q) {
		cin>>T[i]>>X[i];
		if(T[i]==1) {
			rev[i]=V.size();
			V.push_back(i);
		}
		else if(T[i]==3) {
			tadd+=X[i];
			bt.add(0,X[i]);
			bt.add(V.size(),-X[i]);
		}
	}
	
	vector<pair<ll,int>> P;
	FOR(i,Q) if(T[i]==1) {
		F[i]=X[i]+bt(rev[i]);
		P.push_back({F[i],i});
	}
	sort(ALL(P));
	FOR(i,P.size()) O[P[i].second]=i;
	
	ll add=0;
	FOR(i,Q) {
		if(T[i]==1) {
			bt2.add(O[i],1);
		}
		else if(T[i]==2) {
			bt2.add(O[V[X[i]-1]],-1);
		}
		else {
			add+=X[i];
		}
		
		ll dif=add-tadd;
		int L=0;
		for(j=20;j>=0;j--) {
			if(L+(1<<j)>V.size()) continue;
			
			ll t=L+(1<<j)-dif;
			x=lower_bound(ALL(P),make_pair(t,0))-P.begin();
			int num=bt2(Q)-(x?bt2(x-1):0);
			if(num>=L+(1<<j)) L+=1<<j;
		}
		cout<<L<<endl;
		
		
	}
	
	
}


int main(int argc,char** argv){
	string s;int i;
	if(argc==1) ios::sync_with_stdio(false), cin.tie(0);
	FOR(i,argc-1) s+=argv[i+1],s+='\n'; FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin);
	cout.tie(0); solve(); return 0;
}
0