比赛 EYOI常规赛 1st 评测结果 EEEEETAWWWEEEEEEEEEEEEETT
题目名称 EYOI的成立 最终得分 4
用户昵称 今天作业写了没 运行时间 6.382 s
代码语言 C++ 内存使用 6.59 MiB
提交时间 2021-12-02 21:08:13
显示代码纯文本
#include<bits/stdc++.h>
#define ll long long
using namespace std;
ll n,s1,s2,ot[100004];
bool h[100004];
priority_queue <ll,vector<ll>,less<ll> > q;
inline ll read()
{
	ll x=0;
	char a;
	a=getchar();
	while(a<'0'||a>'9') a=getchar();
	while(a>='0'&&a<='9') 
	{
		x=(x<<3)+(x<<1)+(a^48);
		a=getchar();
	}
	return x;
} 
ll write(ll x)
{
	if(x/10) write(x/10);
	putchar(x-x/10*10+48);
}
ll deal(ll i)
{
	while(--i)
	{
		if(h[i]) return i; 
	} 
}
void in()
{
	n=read();
	for(int i=0;i<n;i++)
	{
		s1=read();
		s2=read();
		s2+=s1;
		ot[i]=deal(s2);
		h[s1]=true;
	}
}
void out()
{
	for(int i=0;i<n;i++) 
	{
		write(ot[i]);
		putchar(32);
	}
}
int main()
{
	freopen("EYOI_found.in","r",stdin);	
	freopen("EYOI_found.out","w",stdout);
	in();
	out();
	return 0;
}