记录编号 567714 评测结果 AAAAAAAAAAAAAAAAAAAAAAAAA
题目名称 EYOI的成立 最终得分 100
用户昵称 Gravatarムラサメ 是否通过 通过
代码语言 C++ 运行时间 3.452 s
提交时间 2021-12-05 16:36:58 内存使用 9.70 MiB
显示代码纯文本
#include<bits/stdc++.h>
using namespace std;
int n,a,b;
int f[1000010];
int lowbit(int x){
	return x&-x;
}
void work2(int x){
	int p=x;
	while(x<=1000000){
		f[x]=max(f[x],p);
		x+=lowbit(x);
	}
	return;
}
int work1(int x){
	int ans=0;
	while(x>0){
		ans=max(ans,f[x]);
		x-=lowbit(x);
	}
	return ans;
}
int main(){
	freopen("EYOI_found.in","r",stdin);
	freopen("EYOI_found.out","w",stdout);
	ios::sync_with_stdio(false);
	cin.tie(0);
	cout.tie(0);
	cin>>n;
	for(int i=1;i<=n;i++){
		cin>>a>>b;
		cout<<work1(a+b-1)<<endl;
		if(a){
			work2(a);
		}
	}
	return 0;
}