#include <bits/stdc++.h>
#define ll long long
#define f first
#define s second
#define pb push_back
#define mp make_pair
using namespace std;
ll n,k,a[200005],s,las,p,cur,maxi,l,r,mid,can;
set<pair<ll,ll> >st;
vector<vector<ll> >ans;
vector<ll>g;
int main(){
ios::sync_with_stdio(false);
cin >> n >> k;
bool ok = 1;
for(int i=1; i<=n; i++){
cin >> a[i];
if(a[i] != a[1])ok = 0;
s += a[i];
st.insert(mp(-a[i] , i));
}
if(s % k){
cout << "-1";
return 0;
}
ll raod = s / k;
ll sum = s;
ll ra = 0;
while(sum){
if(ra > 500000){
cout << "-1";
return 0;
}
if((int)st.size() < k){
cout << "-1";
return 0;
}
p = 0,cur = 0;
g.clear();
maxi = -(*st.begin()).f;
for(set<pair<ll,ll> >::iterator it = st.begin(); it != st.end(); it++){
p++;
if(p > k){
cur = (*it).s;
break;
}
las = (*it).s;
}
l = 1 , r = a[las] , mid , can = 1;
while(r >= l){
mid = (l + r) / 2;
if(max(maxi - mid , a[cur]) * k <= sum - mid * k){
l = mid + 1;
can = mid;
}
else {
r = mid - 1;
}
}
sum -= can * k;
ra += k;
p = 0;
g.pb(can);
for(set<pair<ll,ll> >::iterator it = st.begin(); it != st.end(); it++){
p++;
if(p > k){
cur = (*it).s;
break;
}
g.pb((*it).s);
}
for(int i=1; i<g.size(); i++){
st.erase(mp(-a[g[i]] , g[i]));
a[g[i]]-=can;
if(a[g[i]])st.insert(mp(-a[g[i]] , g[i]));
}
ans.pb(g);
}
cout << (int)ans.size() << endl;
for(int i=0; i<ans.size(); i++){
for(int j=0; j<ans[i].size(); j++)
cout << ans[i][j] << " ";
cout << '\n';
}
return 0;
}
Compilation message
nicegift.cpp: In function 'int main()':
nicegift.cpp:51:42: warning: right operand of comma operator has no effect [-Wunused-value]
l = 1 , r = a[las] , mid , can = 1;
^
nicegift.cpp:74:23: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for(int i=1; i<g.size(); i++){
~^~~~~~~~~
nicegift.cpp:84:19: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for(int i=0; i<ans.size(); i++){
~^~~~~~~~~~~
nicegift.cpp:85:23: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for(int j=0; j<ans[i].size(); j++)
~^~~~~~~~~~~~~~
nicegift.cpp:15:10: warning: variable 'ok' set but not used [-Wunused-but-set-variable]
bool ok = 1;
^~
nicegift.cpp:28:8: warning: unused variable 'raod' [-Wunused-variable]
ll raod = s / k;
^~~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
376 KB |
n=4 |
2 |
Correct |
2 ms |
376 KB |
n=3 |
3 |
Correct |
2 ms |
376 KB |
n=3 |
4 |
Correct |
2 ms |
376 KB |
n=4 |
5 |
Correct |
2 ms |
376 KB |
n=4 |
6 |
Correct |
2 ms |
376 KB |
n=2 |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
376 KB |
n=4 |
2 |
Correct |
2 ms |
376 KB |
n=3 |
3 |
Correct |
2 ms |
376 KB |
n=3 |
4 |
Correct |
2 ms |
376 KB |
n=4 |
5 |
Correct |
2 ms |
376 KB |
n=4 |
6 |
Correct |
2 ms |
376 KB |
n=2 |
7 |
Correct |
2 ms |
376 KB |
n=5 |
8 |
Correct |
5 ms |
1016 KB |
n=8 |
9 |
Correct |
2 ms |
424 KB |
n=14 |
10 |
Correct |
2 ms |
376 KB |
n=11 |
11 |
Correct |
38 ms |
5168 KB |
n=50000 |
12 |
Correct |
33 ms |
4796 KB |
n=50000 |
13 |
Correct |
2 ms |
380 KB |
n=10 |
14 |
Correct |
2 ms |
376 KB |
n=685 |
15 |
Correct |
3 ms |
404 KB |
n=623 |
16 |
Correct |
2 ms |
376 KB |
n=973 |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
376 KB |
n=4 |
2 |
Correct |
2 ms |
376 KB |
n=3 |
3 |
Correct |
2 ms |
376 KB |
n=3 |
4 |
Correct |
2 ms |
376 KB |
n=4 |
5 |
Correct |
2 ms |
376 KB |
n=4 |
6 |
Correct |
2 ms |
376 KB |
n=2 |
7 |
Correct |
2 ms |
376 KB |
n=5 |
8 |
Correct |
5 ms |
1016 KB |
n=8 |
9 |
Correct |
2 ms |
424 KB |
n=14 |
10 |
Correct |
2 ms |
376 KB |
n=11 |
11 |
Correct |
38 ms |
5168 KB |
n=50000 |
12 |
Correct |
33 ms |
4796 KB |
n=50000 |
13 |
Correct |
2 ms |
380 KB |
n=10 |
14 |
Correct |
2 ms |
376 KB |
n=685 |
15 |
Correct |
3 ms |
404 KB |
n=623 |
16 |
Correct |
2 ms |
376 KB |
n=973 |
17 |
Correct |
3 ms |
504 KB |
n=989 |
18 |
Correct |
2 ms |
376 KB |
n=563 |
19 |
Correct |
3 ms |
376 KB |
n=592 |
20 |
Correct |
3 ms |
476 KB |
n=938 |
21 |
Correct |
2 ms |
376 KB |
n=747 |
22 |
Correct |
2 ms |
376 KB |
n=991 |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
127 ms |
29048 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
376 KB |
n=4 |
2 |
Correct |
2 ms |
376 KB |
n=3 |
3 |
Correct |
2 ms |
376 KB |
n=3 |
4 |
Correct |
2 ms |
376 KB |
n=4 |
5 |
Correct |
2 ms |
376 KB |
n=4 |
6 |
Correct |
2 ms |
376 KB |
n=2 |
7 |
Correct |
2 ms |
376 KB |
n=5 |
8 |
Correct |
5 ms |
1016 KB |
n=8 |
9 |
Correct |
2 ms |
424 KB |
n=14 |
10 |
Correct |
2 ms |
376 KB |
n=11 |
11 |
Correct |
38 ms |
5168 KB |
n=50000 |
12 |
Correct |
33 ms |
4796 KB |
n=50000 |
13 |
Correct |
2 ms |
380 KB |
n=10 |
14 |
Correct |
2 ms |
376 KB |
n=685 |
15 |
Correct |
3 ms |
404 KB |
n=623 |
16 |
Correct |
2 ms |
376 KB |
n=973 |
17 |
Correct |
3 ms |
504 KB |
n=989 |
18 |
Correct |
2 ms |
376 KB |
n=563 |
19 |
Correct |
3 ms |
376 KB |
n=592 |
20 |
Correct |
3 ms |
476 KB |
n=938 |
21 |
Correct |
2 ms |
376 KB |
n=747 |
22 |
Correct |
2 ms |
376 KB |
n=991 |
23 |
Runtime error |
127 ms |
29048 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
24 |
Halted |
0 ms |
0 KB |
- |