#include<bits/stdc++.h>
using namespace std;
#define int long long
int n,k,cnt;
set<pair<int,int>> rez;
vector<int> pozs[31];
int a[2000005],inita[2000005];
int nxt[2000005][2],prec[2000005][2];
void baga_dupa(int p, int x, int c)
{
int pnxt = nxt[p][c];
nxt[p][c] = x;
nxt[x][c] = pnxt;
prec[x][c] = p;
prec[pnxt][c] = x;
}
void scoate(int p, int c)
{
nxt[prec[p][c]][c] = nxt[p][c];
prec[nxt[p][c]][c] = prec[p][c];
}
vector<int> aux;
void calc(int x)
{
if(k==0 || x==0)
{
aux.push_back(x);
return;
}
k--;
calc(x-1);
calc(x-1);
}
signed main()
{
ios_base::sync_with_stdio(0);cin.tie(0);
cin>>n>>k;
int initn=n;
for(int i=1;i<=n;i++)
{
cin>>a[i];
inita[i]=a[i];
prec[i][0]=prec[i][1]=i-1;
nxt[i][0]=nxt[i][1]=i+1;
pozs[a[i]].push_back(i);
}
nxt[n][0]=nxt[n][1]=0;
for(int i=0;i<30;i++)
{
sort(pozs[i].begin(),pozs[i].end());
for(int j=(int)pozs[i].size()-1;j>=0;j--)
{
if(j>0 && nxt[pozs[i][j-1]][0] == pozs[i][j])
{
//cout<<i<<" zzz\n";
pozs[i+1].push_back(pozs[i][j]);
a[pozs[i][j]]++;
scoate(pozs[i][j-1],0);
j--;
}
else
{
pozs[i+1].push_back(pozs[i][j]);
k--;
n++;
a[n]=inita[n]=i;
baga_dupa(pozs[i][j],n,1);
a[pozs[i][j]]++;
}
}
/*cout<<i<<" ";
int cur=1;
while(cur!=0)
{
cout<<a[cur]<<" ";
cur = nxt[cur][0];
}
cout<<"\n";*/
}
assert(n<=2000000);
int primu=-1;
for(int i=1;i<=n;i++)
if(prec[i][1]==0)
primu=i;
assert(primu!=-1);
int cur=primu;
for(int i=1;i<=n;i++)
{
if(cur<=initn) aux.push_back(inita[cur]);
else calc(inita[cur]);
cur = nxt[cur][1];
}
for(auto x:aux)
cout<<x<<" ";
return 0;
}
/**
5 1
29 27 25 25 28
1 5
29
*/
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
254 ms |
80188 KB |
Output is correct |
2 |
Correct |
288 ms |
80316 KB |
Output is correct |
3 |
Correct |
267 ms |
80380 KB |
Output is correct |
4 |
Correct |
262 ms |
80184 KB |
Output is correct |
5 |
Correct |
254 ms |
80460 KB |
Output is correct |
6 |
Correct |
255 ms |
81152 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
258 ms |
80088 KB |
not a zalsequence |
2 |
Incorrect |
254 ms |
80980 KB |
not a zalsequence |
3 |
Incorrect |
258 ms |
78284 KB |
not a zalsequence |
4 |
Incorrect |
265 ms |
80312 KB |
not a zalsequence |
5 |
Incorrect |
265 ms |
80528 KB |
not a zalsequence |
6 |
Correct |
259 ms |
80396 KB |
Output is correct |
7 |
Correct |
279 ms |
80952 KB |
Output is correct |
8 |
Incorrect |
262 ms |
80172 KB |
not a zalsequence |
9 |
Incorrect |
247 ms |
74216 KB |
not a zalsequence |
10 |
Incorrect |
125 ms |
43932 KB |
not a zalsequence |
11 |
Incorrect |
169 ms |
56180 KB |
not a zalsequence |
12 |
Incorrect |
54 ms |
16564 KB |
not a zalsequence |
13 |
Incorrect |
70 ms |
16592 KB |
not a zalsequence |
14 |
Incorrect |
60 ms |
16432 KB |
not a zalsequence |