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;
template<typename T>
void out(T x) { cout << x << endl; exit(0); }
#define watch(x) cout << (#x) << " is " << (x) << endl
using ll = long long;
int main() {
ios_base::sync_with_stdio(false); cin.tie(0); cout.tie(0);
ll n,k;
cin>>n>>k;
assert(k==2);
priority_queue<pair<ll,int>> pq;
ll sum=0;
for (int i=1; i<=n; i++) {
ll x;
cin>>x;
sum += x;
pq.push({x,i});
}
if (sum%k) out(-1);
vector<vector<ll>> w;
while (pq.size()) {
vector<pair<ll,int>> tmp;
for (int i=0; i<k; i++) {
if (pq.empty()) out(-1);
tmp.push_back(pq.top());
pq.pop();
}
ll lo = (pq.empty() ? 0 : pq.top().first);
ll gap = max(1ll,tmp.back().first-lo);
vector<ll> inds;
for (auto p: tmp) {
inds.push_back(p.second);
p.first -= gap;
if (p.first>0) {
pq.push(p);
}
}
inds.push_back(gap);
w.push_back(inds);
}
cout<<w.size()<<"\n";
for (auto p: w) {
ll gap = p.back();
p.pop_back();
cout<<gap<<" ";
for (ll i: p) cout<<i<<" ";
cout<<"\n";
}
return 0;
}
# | 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... |