# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
861853 | maks007 | Zalmoxis (BOI18_zalmoxis) | C++14 | 130 ms | 51316 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include "bits/stdc++.h"
using namespace std;
#define int long long
int k;
vector <pair <int,int>> ans;
vector <int> a;
void decomp(int v) {
stack <int> st;
st.push(v);
if(k > (1 << v)) {
k -= (1 << v);
for(int i = 0; i < (1 << v); i ++) cout << 0 << " ";
return;
}
while(1) {
if(st.size() == k + 1) break;
int v = st.top();
st.pop();
if(v == 0) {
cout << 0 << " ";
k --;
continue;
}
st.push(v-1);
st.push(v-1);
}
k -= st.size();
while(!st.empty()) {
cout << st.top() << " ";
st.pop();
}
}
void f(int v) {
if(a.size() == 0) {
ans.push_back({v, 1});
return;
}
if(v == a.back()) {
ans.push_back({v,0});
a.pop_back();
return;
}
if(a.back() > v) {
ans.push_back({v,1});
return;
}
f(v-1);
f(v-1);
}
signed main () {
ios::sync_with_stdio(0);
cin.tie(0); cout.tie(0);
int n, cnt = 0;
cin >> n >> k;
for(int i = 0; i < n; i ++) {
int x;
cin >> x;
a.push_back(x);
}
reverse(a.begin(), a.end());
f(30);
for(auto i : ans) k -= i.second;
for(auto i : ans) {
if(i.second == 0) cout << i.first << " ";
else if(k){
decomp(i.first);
}
}
return 0;
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |