# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
335290 |
2020-12-11T20:34:16 Z |
limabeans |
Gift (IZhO18_nicegift) |
C++17 |
|
2000 ms |
235536 KB |
#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<int>> 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<int> inds;
for (auto p: tmp) {
inds.push_back(p.second);
p.first -= gap;
if (p.first>0) {
pq.push(p);
}
}
w.push_back(inds);
}
cout<<w.size()<<"\n";
for (auto p: w) {
cout<<1<<" "<<p[0]<<" "<<p[1]<<"\n";
}
return 0;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
364 KB |
n=4 |
2 |
Correct |
0 ms |
364 KB |
n=3 |
3 |
Correct |
1 ms |
364 KB |
n=3 |
4 |
Correct |
1 ms |
364 KB |
n=4 |
5 |
Correct |
0 ms |
364 KB |
n=4 |
6 |
Correct |
0 ms |
364 KB |
n=2 |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
364 KB |
n=4 |
2 |
Correct |
0 ms |
364 KB |
n=3 |
3 |
Correct |
1 ms |
364 KB |
n=3 |
4 |
Correct |
1 ms |
364 KB |
n=4 |
5 |
Correct |
0 ms |
364 KB |
n=4 |
6 |
Correct |
0 ms |
364 KB |
n=2 |
7 |
Correct |
1 ms |
364 KB |
n=5 |
8 |
Correct |
1 ms |
364 KB |
n=8 |
9 |
Incorrect |
8 ms |
1192 KB |
Not all heaps are empty in the end |
10 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
364 KB |
n=4 |
2 |
Correct |
0 ms |
364 KB |
n=3 |
3 |
Correct |
1 ms |
364 KB |
n=3 |
4 |
Correct |
1 ms |
364 KB |
n=4 |
5 |
Correct |
0 ms |
364 KB |
n=4 |
6 |
Correct |
0 ms |
364 KB |
n=2 |
7 |
Correct |
1 ms |
364 KB |
n=5 |
8 |
Correct |
1 ms |
364 KB |
n=8 |
9 |
Incorrect |
8 ms |
1192 KB |
Not all heaps are empty in the end |
10 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
2083 ms |
235536 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
364 KB |
n=4 |
2 |
Correct |
0 ms |
364 KB |
n=3 |
3 |
Correct |
1 ms |
364 KB |
n=3 |
4 |
Correct |
1 ms |
364 KB |
n=4 |
5 |
Correct |
0 ms |
364 KB |
n=4 |
6 |
Correct |
0 ms |
364 KB |
n=2 |
7 |
Correct |
1 ms |
364 KB |
n=5 |
8 |
Correct |
1 ms |
364 KB |
n=8 |
9 |
Incorrect |
8 ms |
1192 KB |
Not all heaps are empty in the end |
10 |
Halted |
0 ms |
0 KB |
- |