#include <bits/stdc++.h>
#include <ext/pb_ds/detail/standard_policies.hpp>
#include <ext/pb_ds/assoc_container.hpp> // Common file
#include <ext/pb_ds/tree_policy.hpp> // Including tree_order_statistics_node_update
#define f first
#define s second
#define pb push_back
#define mp make_pair
#define clr(dp,i) memset(dp,i,sizeof(dp))
#define opt ios_base::sync_with_stdio(NULL);cin.tie(NULL);cout.tie(NULL);
using namespace std;
using namespace __gnu_pbds;
typedef tree<int, null_type, less<int>, rb_tree_tag,
tree_order_statistics_node_update> oset;
typedef long long ll;
typedef long double ld;
typedef unsigned long long ull;
typedef pair<int, int> pii;
const long long mod = 1e9+7;
const ld pi = 3.14159265358979323846264338327950288;
//========================================
int vis[200001];
int main()
{
opt;
int n;
cin >> n;
int a[n];
oset med;
int bot = 1;
int top = n*2 - 1;
for(int i=0; i<n; i++)
cin >> a[i];
vector<int> vec;
for(int i=0; i<n; i++)
{
if(!vis[a[i]])
{
vec.pb(a[i]);
vis[a[i]] = 1;
med.insert(a[i]);
}
int x = med.order_of_key(a[i]);
x = i - x;
int sz = i * 2 + 1;
int y = (sz - med.size()) - x;
//cout << x << " " << y << endl;
while(x > 0)
{
if(!vis[bot])
x--, vis[bot] = 1, med.insert(bot), vec.pb(bot);
bot++;
}
while(y > 0)
{
if(!vis[top])
y--, vis[top] = 1, med.insert(top), vec.pb(top);
top--;
}
}
for(int i : vec)
cout << i << " ";
cout << endl;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
248 KB |
Output is correct |
2 |
Correct |
2 ms |
484 KB |
Output is correct |
3 |
Correct |
2 ms |
496 KB |
Output is correct |
4 |
Correct |
2 ms |
496 KB |
Output is correct |
5 |
Correct |
2 ms |
496 KB |
Output is correct |
6 |
Correct |
2 ms |
496 KB |
Output is correct |
7 |
Correct |
2 ms |
496 KB |
Output is correct |
8 |
Correct |
2 ms |
496 KB |
Output is correct |
9 |
Correct |
2 ms |
612 KB |
Output is correct |
10 |
Correct |
2 ms |
624 KB |
Output is correct |
11 |
Correct |
2 ms |
624 KB |
Output is correct |
12 |
Correct |
3 ms |
624 KB |
Output is correct |
13 |
Correct |
3 ms |
624 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
4 ms |
968 KB |
Output is correct |
2 |
Correct |
6 ms |
972 KB |
Output is correct |
3 |
Correct |
10 ms |
1492 KB |
Output is correct |
4 |
Correct |
19 ms |
2516 KB |
Output is correct |
5 |
Correct |
43 ms |
4556 KB |
Output is correct |
6 |
Correct |
87 ms |
8664 KB |
Output is correct |
7 |
Correct |
142 ms |
13260 KB |
Output is correct |