# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
721030 | cig32 | Gift (IZhO18_nicegift) | C++17 | 849 ms | 119584 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "bits/stdc++.h"
#define int long long
using namespace std;
const int MAXN = 1e5 + 10;
void solve(int tc) {
int n, k;
cin >> n >> k;
priority_queue<pair<int,int> > pq;
int a[n+1];
for(int i=1; i<=n; i++) {
cin >> a[i];
pq.push({a[i], i});
}
if(k == n) {
for(int i=1; i<n; i++){
if(a[i] != a[i+1]) {
cout << "-1\n"; return;
}
}
cout << "1\n";
cout << a[1];
for(int i=1; i<=n; i++) cout << " " << i;
cout << '\n';
return;
}
int lim = 3000000 / k;
vector<vector<int> > ops;
while(lim--) {
while(pq.size() && pq.top().first == 0) pq.pop();
if(pq.empty()) break;
if(pq.size() < k) {
cout << "-1\n"; return;
}
int mn = 1e18;
stack<pair<int, int> > st;
vector<int> lol;
for(int i=0; i<k; i++) {
st.push(pq.top());
mn = min(mn, pq.top().first);
lol.push_back(pq.top().second);
pq.pop();
}
int cmp = 0;
if(pq.size()) cmp = pq.top().first;
mn = max(1ll, mn - cmp);
while(st.size()) {
if(st.top().first != mn) {
pq.push({st.top().first - mn, st.top().second});
}
st.pop();
}
for(int x: lol) {
a[x] -= mn;
}
lol.push_back(mn);
ops.push_back(lol);
}
for(int i=1; i<=n; i++) {
if(a[i] != 0) {
cout << "-1\n"; return;
}
}
cout << ops.size() << "\n";
for(vector<int> v: ops) {
cout << v.back();
for(int i=0; i<k; i++) cout << " " << v[i];
cout << "\n";
}
}
int32_t main() {
ios::sync_with_stdio(0);
cin.tie(0);
int t=1;
//cin>>t;
for(int i=1; i<=t; i++)solve(i);
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |