#include <bits/stdc++.h>
using namespace std;
#define ort ((bas+son)/2)
#define int long long
#define endl "\n"
#define pb push_back
#define fi first
#define se second
int n,k,a[1000005];
vector<int> v[35];
int32_t main(void){
ios_base::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL);
cin>>n>>k;
multiset<pair<int,int>> ekle;
for(int i=1;i<=n;i++){
cin>>a[i];
v[a[i]].pb(i);
//~ ekle.insert({a[i],i});
}
//~ cout<<"**\n";
for(int i=0;i<30;i++){
sort(v[i].begin(),v[i].end());
int siz=v[i].size();
if(siz%2==0){
for(int j=siz/2;j<siz;j++)v[i+1].pb(v[i][j]);
v[i].clear();
}
else{
//~ cout<<i<<" ()())(()() \n";
ekle.insert({i,v[i][0]});
for(int j=siz/2;j<siz;j++)v[i+1].pb(v[i][j]);
v[i].clear();
}
}
//~ cout<<"**\n";
while((int)ekle.size()<k){
auto it=ekle.end();
it--;
int val=it->fi;
int ind=it->se;
ekle.erase(it);
val--;
ekle.insert({val,ind});
ekle.insert({val,ind});
}
vector<pair<int,int>> ans;
while(ekle.size()){
auto it=ekle.begin();
ans.pb({it->se,it->fi});
//~ cout<<it->se<<" ()() "<<it->fi<<endl;
ekle.erase(it);
}
sort(ans.begin(),ans.end());
int sayac=0;
int sizz=ans.size();
for(int i=1;i<=n;i++){
cout<<a[i]<<" ";
while(sayac<sizz && ans[sayac].fi==i){cout<<ans[sayac].se<<" ";sayac++;}
}
cout<<endl;
return 0;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
170 ms |
26956 KB |
not a zalsequence |
2 |
Incorrect |
172 ms |
27136 KB |
not a zalsequence |
3 |
Incorrect |
173 ms |
26928 KB |
not a zalsequence |
4 |
Incorrect |
195 ms |
27024 KB |
not a zalsequence |
5 |
Incorrect |
174 ms |
27096 KB |
not a zalsequence |
6 |
Incorrect |
181 ms |
27416 KB |
not a zalsequence |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
173 ms |
26588 KB |
not a zalsequence |
2 |
Incorrect |
191 ms |
27876 KB |
not a zalsequence |
3 |
Incorrect |
180 ms |
26688 KB |
not a zalsequence |
4 |
Incorrect |
167 ms |
27012 KB |
not a zalsequence |
5 |
Incorrect |
166 ms |
28140 KB |
not a zalsequence |
6 |
Incorrect |
164 ms |
29036 KB |
not a zalsequence |
7 |
Incorrect |
177 ms |
27508 KB |
not a zalsequence |
8 |
Incorrect |
172 ms |
27212 KB |
not a zalsequence |
9 |
Incorrect |
208 ms |
39772 KB |
not a zalsequence |
10 |
Incorrect |
341 ms |
71628 KB |
not a zalsequence |
11 |
Incorrect |
290 ms |
54560 KB |
not a zalsequence |
12 |
Incorrect |
456 ms |
81732 KB |
not a zalsequence |
13 |
Incorrect |
442 ms |
81712 KB |
not a zalsequence |
14 |
Correct |
455 ms |
81836 KB |
Output is correct |