이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "bits/stdc++.h"
using namespace std;
signed main () {
ios::sync_with_stdio(0);
cin.tie(0); cout.tie(0);
int n, k;
cin >> n >> k;
vector <int> a, b;
for(int i = 0; i < n; i ++) {
int x;
cin >> x;
a.push_back(x);
}
b = a;
sort(a.rbegin(), a.rend());
int which = -1;
while(a.size() != 1) {
int val1 = a.back();
a.pop_back();
if(val1 == a.back()) {
a.pop_back();
a.push_back(val1+1);
}else {
k --;
which = val1;
a.push_back(val1+1);
}
}
assert(which != -1);
for(auto i : b) cout << i << " ";
cout << which;
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |