//#pragma GCC optimize("Ofast")
#pragma GCC target("sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx")
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
#include <bits/stdc++.h>
#define pb push_back
#define F first
#define S second
#define ll long long
#define ull unsigned long long
#define ld long double
#define sqr(x) (x) * (x)
using namespace std;
using namespace __gnu_pbds;
int main()
{
#ifdef LOCAL
freopen("input.txt", "r", stdin);
freopen("output.txt", "w", stdout);
#endif // LOCAL
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
int n, k;
cin >> n >> k;
vector <pair <ll, int>> a;
ll sum = 0;
for(int i = 0; i < n; ++i)
{
int x;
cin >> x;
sum += x;
if (x > 0) a.pb({x, i});
}
if (sum % k > 0)
{
cout << -1;
return 0;
}
vector <pair <ll, vector <int>>> ans;
vector <int> cl;
sort(a.rbegin(), a.rend());
while(int(a.size()) >= k)
{
ll z = a.back().F;
ans.pb({z, cl});
for(int i = int(a.size()) - 1; i >= int(a.size()) - k; --i)
{
ans.back().S.pb(a[i].S);
a[i].F -= z;
}
while(!a.empty() && a.back().F == 0)
a.pop_back();
}
if (!a.empty())
{
cout << -1;
}
else
{
cout << int(ans.size()) << '\n';
for(int i = 0; i < int(ans.size()); ++i)
{
cout << ans[i].F << ' ';
for(int j = 0; j < k; ++j)
cout << ans[i].S[j] + 1 << ' ';
cout << '\n';
}
}
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2 ms |
376 KB |
n=4 |
2 |
Incorrect |
2 ms |
376 KB |
Jury has the answer but participant has not |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2 ms |
376 KB |
n=4 |
2 |
Incorrect |
2 ms |
376 KB |
Jury has the answer but participant has not |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2 ms |
376 KB |
n=4 |
2 |
Incorrect |
2 ms |
376 KB |
Jury has the answer but participant has not |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
306 ms |
60992 KB |
Not all heaps are empty in the end |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2 ms |
376 KB |
n=4 |
2 |
Incorrect |
2 ms |
376 KB |
Jury has the answer but participant has not |
3 |
Halted |
0 ms |
0 KB |
- |