# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
1107926 |
2024-11-02T11:33:13 Z |
stdfloat |
Gift (IZhO18_nicegift) |
C++17 |
|
13 ms |
8280 KB |
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define sz(v) (int)(v).size()
#define all(v) (v).begin(), (v).end()
#define ff first
#define ss second
#define pii pair<int, int>
int main() {
ios::sync_with_stdio(false); cin.tie(nullptr);
int n, k;
cin >> n >> k;
ll sm = 0;
pair<int, int> p[n];
for (int i = 0; i < n; i++) {
cin >> p[i].ff; p[i].ss = i;
sm += p[i].ff;
}
if (sm % k) return cout << -1, 0;
vector<vector<int>> ans;
while (p[n - 1].ff) {
sort(p, p + n);
ans.push_back({});
for (int i = n - 1; i >= n - k; i--) {
assert(p[i].ff);
p[i].ff--;
ans.back().push_back(p[i].ss);
}
}
cout << sz(ans) << '\n';
for (auto i : ans) {
cout << "1 ";
for (auto j : i)
cout << j + 1 << ' ';
cout << '\n';
}
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
336 KB |
Not all heaps are empty in the end |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
336 KB |
Not all heaps are empty in the end |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
336 KB |
Not all heaps are empty in the end |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
13 ms |
8280 KB |
Jury has the answer but participant has not |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
336 KB |
Not all heaps are empty in the end |
2 |
Halted |
0 ms |
0 KB |
- |