/*
DEATH-MATCH
Davit-Marg
*/
#include <iostream>
#include <algorithm>
#include <cmath>
#include <vector>
#include <string>
#include <cstring>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <stack>
#include <iterator>
#include <ctype.h>
#include <stdlib.h>
#include <cassert>
#include <fstream>
#define mod 998244353ll
#define LL long long
#define LD long double
#define MP make_pair
#define PB push_back
using namespace std;
LL gcd(LL a, LL b) {
while (b) {
a %= b;
swap(a, b);
}
return a;
}
LL n,k,a[1000006],d,v,s;
bool hav=1;
priority_queue<pair<LL, int>> q;
vector<pair<LL, int>> ans;
int main()
{
cin >> n >> k;
for (LL i = 0; i < n; i++)
{
scanf("%lld", a + i);
s += a[i];
q.push(MP(a[i],i));
if (i && a[i] != a[i - 1])
hav = 0;
}
if (hav)
{
d = k / gcd(n, k);
if (a[0] % d != 0)
{
cout << -1 << endl;
return 0;
}
cout << d * n / k;
for (LL i = 0; i < d*n; i++)
{
v %= k;
if (v == 0)
cout << endl << a[0] / d << " ";
cout << (i%n) + 1 << " ";
v++;
}
cout << endl;
}
else
{
int step = 0;
vector<pair<LL, int>> st;
while (!q.empty())
{
for (int i = 0; i < k; i++)
{
if (q.empty())
{
cout << -1 << endl;
return 0;
}
st.PB(q.top());
q.pop();
}
LL d = max(st.back().first-1ll,1ll);
/*if (!q.empty())
d = max(st.back().first - q.top().first,1ll);*/
for (int i = k-1; i >=0 ; i--)
{
ans.PB(MP(d,st[i].second));
if(st[i].first - d > 0)
q.push(MP(st[i].first-d,st[i].second));
st.pop_back();
}
}
if (!q.empty() || !st.empty())
{
cout << -1 << endl;
return 0;
}
else
{
cout << ans.size() / k;
for (int i = 0; i < ans.size(); i++)
{
if (i%k == 0)
cout<< endl << ans[i].first << " ";
cout << ans[i].second+1 << " ";
}
cout << endl;
}
}
return 0;
}
/*
4 2
1 1 4 4
4 3
6 6 6 6
14 7
10 10 10 10 10 10 10 10 10 10 10 10 10 10
*/
Compilation message
nicegift.cpp: In function 'int main()':
nicegift.cpp:108:22: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for (int i = 0; i < ans.size(); i++)
~~^~~~~~~~~~~~
nicegift.cpp:74:7: warning: unused variable 'step' [-Wunused-variable]
int step = 0;
^~~~
nicegift.cpp:45:8: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
scanf("%lld", a + i);
~~~~~^~~~~~~~~~~~~~~
# |
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 |
256 KB |
n=4 |
5 |
Correct |
2 ms |
256 KB |
n=4 |
6 |
Correct |
2 ms |
256 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 |
256 KB |
n=4 |
5 |
Correct |
2 ms |
256 KB |
n=4 |
6 |
Correct |
2 ms |
256 KB |
n=2 |
7 |
Correct |
2 ms |
376 KB |
n=5 |
8 |
Correct |
2 ms |
256 KB |
n=8 |
9 |
Correct |
2 ms |
256 KB |
n=14 |
10 |
Incorrect |
2 ms |
376 KB |
Jury has the answer but participant has not |
11 |
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 |
256 KB |
n=4 |
5 |
Correct |
2 ms |
256 KB |
n=4 |
6 |
Correct |
2 ms |
256 KB |
n=2 |
7 |
Correct |
2 ms |
376 KB |
n=5 |
8 |
Correct |
2 ms |
256 KB |
n=8 |
9 |
Correct |
2 ms |
256 KB |
n=14 |
10 |
Incorrect |
2 ms |
376 KB |
Jury has the answer but participant has not |
11 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1093 ms |
38148 KB |
n=1000000 |
2 |
Correct |
527 ms |
24060 KB |
n=666666 |
3 |
Correct |
237 ms |
13776 KB |
n=400000 |
4 |
Correct |
664 ms |
24144 KB |
n=285714 |
5 |
Correct |
8 ms |
1116 KB |
n=20000 |
6 |
Correct |
497 ms |
19932 KB |
n=181818 |
7 |
Correct |
5 ms |
760 KB |
n=10000 |
8 |
Correct |
36 ms |
2296 KB |
n=6666 |
9 |
Correct |
3 ms |
632 KB |
n=4000 |
10 |
Correct |
192 ms |
9564 KB |
n=2857 |
11 |
Correct |
2 ms |
376 KB |
n=2000 |
# |
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 |
256 KB |
n=4 |
5 |
Correct |
2 ms |
256 KB |
n=4 |
6 |
Correct |
2 ms |
256 KB |
n=2 |
7 |
Correct |
2 ms |
376 KB |
n=5 |
8 |
Correct |
2 ms |
256 KB |
n=8 |
9 |
Correct |
2 ms |
256 KB |
n=14 |
10 |
Incorrect |
2 ms |
376 KB |
Jury has the answer but participant has not |
11 |
Halted |
0 ms |
0 KB |
- |