#include <bits/stdc++.h>
using namespace std;
vector<int> v[1000001];
int n,k,arr[1000001];
void solve(int l , int r , int val , int freq){
if(r == l-1){
for(int i = 0 ; i < freq ; i += 1){
k -= 1;
v[r].push_back(val);
}
return ;
}
int pos = -1;
for(int i = l ; i <= r ; i += 1){
if(arr[i] == val){
pos = i;
break;
}
}
if(pos == -1){
solve(l,r,val-1,2*freq);
return ;
}
int farr[31];
memset(farr,0,sizeof farr);
for(int i = l ; i < pos ; i += 1){
farr[arr[i]] += 1;
}
int tag = 0;
for(int i = 0 ; i < val ; i += 1){
farr[i+1] += farr[i]/2;
if(farr[i]%2 == 1){
tag = 1;
}
}
freq -= 1;
solve(l,pos-1,val,farr[val]+tag),solve(pos+1,r,val,freq-farr[val]-tag);
}
int main(){
cin >> n >> k;
for(int i = 1 ; i <= n ; i += 1){
cin >> arr[i];
}
solve(1,n,30,1);
vector<int> varr;
for(int i = 0 ; i <= n ; i += 1){
for(auto j : v[i]){
varr.push_back(j);
}
if(i){
varr.push_back(arr[i]);
}
}
vector<int> ans;
while(k > 0){
if(varr.back() > 0){
k -= 1;
int a = varr.back();
varr.pop_back();
varr.push_back(a-1),varr.push_back(a-1);
}else{
ans.push_back(varr.back());
}
}
while(varr.size()){
ans.push_back(varr.back());
varr.pop_back();
}
reverse(ans.begin(),ans.end());
for(auto i : ans){
cout << i << " ";
}cout << endl;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
452 ms |
37796 KB |
Expected EOF |
2 |
Incorrect |
423 ms |
37828 KB |
Expected EOF |
3 |
Incorrect |
430 ms |
37680 KB |
Expected EOF |
4 |
Correct |
438 ms |
37800 KB |
Output is correct |
5 |
Correct |
429 ms |
37772 KB |
Output is correct |
6 |
Incorrect |
445 ms |
37808 KB |
Expected EOF |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
430 ms |
37812 KB |
Expected EOF |
2 |
Incorrect |
433 ms |
37812 KB |
Expected EOF |
3 |
Incorrect |
421 ms |
37812 KB |
Expected EOF |
4 |
Incorrect |
420 ms |
37784 KB |
Expected EOF |
5 |
Runtime error |
625 ms |
262148 KB |
Execution killed with signal 9 |
6 |
Incorrect |
464 ms |
37784 KB |
Expected EOF |
7 |
Incorrect |
423 ms |
37724 KB |
Expected EOF |
8 |
Incorrect |
424 ms |
37812 KB |
Expected EOF |
9 |
Incorrect |
399 ms |
47168 KB |
Expected EOF |
10 |
Runtime error |
399 ms |
262148 KB |
Execution killed with signal 9 |
11 |
Runtime error |
467 ms |
262148 KB |
Execution killed with signal 9 |
12 |
Runtime error |
311 ms |
262148 KB |
Execution killed with signal 9 |
13 |
Runtime error |
291 ms |
262148 KB |
Execution killed with signal 9 |
14 |
Runtime error |
351 ms |
262148 KB |
Execution killed with signal 9 |