//Dost SEFEROĞLU
#pragma GCC optimize("O3,unroll-loops")
#pragma GCC target("avx2")
#include <bits/stdc++.h>
using namespace std;
#define int long long
#define pii pair<int,int>
#define ff first
#define ss second
#define sp << " " <<
#define vi vector<int>
#define all(xx) xx.begin(),xx.end()
#define ps(xxx) cout << (xxx) << endl;
const int N = 5e2+1,inf = 1e16,MOD = 1e9+7;
void solve() {
int n,k;
cin >> n >> k;
int s = 0;
set<pii,greater<pii>> ms;
vi a(n+1);
for (int i=1;i<=n;i++) {
cin >> a[i];
s+=a[i];
ms.insert({a[i],i});
}
if (s%k != 0 || ms.rbegin()->ff > s/k) {
cout << -1 << endl;
return;
}
vector<pair<int,vi>> ops;
int sm = s/k;
while (!ms.empty()) {
vi vv;
auto itt = ms.begin();
int ctr = 0;
for (;ctr != k;++itt) {
vv.push_back(itt->ss);
ctr++;
}
int subt = sm-(ms.size() > k ? (next(ms.begin(),k)->ff) : 0);
sm-=subt;
for (auto it : vv) {
ms.erase({a[it],it});
if (a[it]-subt > 0) ms.insert({a[it]-subt,it});
a[it]-=subt;
}
ops.push_back({subt,vv});
}
cout << ops.size() << '\n';
for (auto it : ops) {
cout << it.ff << " ";
for (auto itt : it.ss) cout << itt << " ";
cout << endl;
}
}
signed main() {
ios_base::sync_with_stdio(0);cin.tie(0);cout.tie(0);
#ifdef Dodi
freopen("in.txt","r",stdin);
freopen("out.txt","w",stdout);
#endif
int t = 1;
//cin >> t;
while (t --> 0) solve();
}
Compilation message
nicegift.cpp: In function 'void solve()':
nicegift.cpp:42:34: warning: comparison of integer expressions of different signedness: 'std::set<std::pair<long long int, long long int>, std::greater<std::pair<long long int, long long int> > >::size_type' {aka 'long unsigned int'} and 'long long int' [-Wsign-compare]
42 | int subt = sm-(ms.size() > k ? (next(ms.begin(),k)->ff) : 0);
| ~~~~~~~~~~^~~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
336 KB |
n=4 |
2 |
Correct |
1 ms |
336 KB |
n=3 |
3 |
Correct |
1 ms |
336 KB |
n=3 |
4 |
Correct |
1 ms |
336 KB |
n=4 |
5 |
Correct |
1 ms |
336 KB |
n=4 |
6 |
Correct |
1 ms |
336 KB |
n=2 |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
336 KB |
n=4 |
2 |
Correct |
1 ms |
336 KB |
n=3 |
3 |
Correct |
1 ms |
336 KB |
n=3 |
4 |
Correct |
1 ms |
336 KB |
n=4 |
5 |
Correct |
1 ms |
336 KB |
n=4 |
6 |
Correct |
1 ms |
336 KB |
n=2 |
7 |
Runtime error |
1684 ms |
524288 KB |
Execution killed with signal 9 |
8 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
336 KB |
n=4 |
2 |
Correct |
1 ms |
336 KB |
n=3 |
3 |
Correct |
1 ms |
336 KB |
n=3 |
4 |
Correct |
1 ms |
336 KB |
n=4 |
5 |
Correct |
1 ms |
336 KB |
n=4 |
6 |
Correct |
1 ms |
336 KB |
n=2 |
7 |
Runtime error |
1684 ms |
524288 KB |
Execution killed with signal 9 |
8 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
2122 ms |
268624 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
336 KB |
n=4 |
2 |
Correct |
1 ms |
336 KB |
n=3 |
3 |
Correct |
1 ms |
336 KB |
n=3 |
4 |
Correct |
1 ms |
336 KB |
n=4 |
5 |
Correct |
1 ms |
336 KB |
n=4 |
6 |
Correct |
1 ms |
336 KB |
n=2 |
7 |
Runtime error |
1684 ms |
524288 KB |
Execution killed with signal 9 |
8 |
Halted |
0 ms |
0 KB |
- |