洛谷 500836. 独数--思维+二分
原题链接
简单
作者:
沁_2
,
2025-01-16 17:23:19
,
所有人可见
,
阅读 1
// Problem: U500836 独数
// Contest: Luogu
// URL: https://www.luogu.com.cn/problem/U500836
// Memory Limit: 512 MB
// Time Limit: 1000 ms
//
// Powered by CP Editor (https://cpeditor.org)
#include <bits/stdc++.h>
using namespace std;
using ll=long long;
#define x first
#define y second
#define ios ios::sync_with_stdio(0),cin.tie(0),cout.tie(0)
#define rep(i,a,b) for(ll i=a;i<=b;i++)
#define rrep(i,a,b) for(ll i=a;i>=b;i--)
#define db double
#define pll pair<ll,ll>
const ll N=1e6+10;
set<ll> s;
/*这题数据规模不是很大,直接把所有的数都装进集合set中,然后找到一个数
就删除一个数,在set中使用二分查找函数,直接找到当前所能选的大于当前数的数*/
void sol(){
ll n;
cin>>n;
rep(i,1,1e6){
s.insert(i);
}
rep(i,1,n){
ll x;
cin>>x;
if(s.count(x)){
cout<<x<<" ";
s.erase(x);//set因为不重复所以可以通过直接删除值来删除容器中的对应元素
}
else {
auto p=s.lower_bound(x);
cout<<*p<<" ";
s.erase(*p);
}
}
}
int main(){
ios;
sol();
return 0;
}