# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
667798 | Kaztaev_Alisher | Gift (IZhO18_nicegift) | C++17 | 1230 ms | 238468 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
//#pragma GCC optomize ("Ofast")
//#pragma GCC optomize ("unroll-loops")
//#pragma GCC target ("avx,avx2,fma")
#include <bits/stdc++.h>
#define F first
#define S second
#define pb push_back
#define sz size
#define cl clear
#define ins insert
#define ers erase
#define pii pair < int , int >
#define pll pair< long long , long long >
#define all(x) x.begin() , x.end()
#define ios ios_base::sync_with_stdio(0);cin.tie(0);cout.tie(0);
#define file(s) if (fopen(s".in", "r")) freopen(s".in", "r", stdin), freopen(s".out", "w", stdout)
#define tostr(x) to_string(x)
#define tonum(s) atoi(s.c_str())
#define seon(x) setprecision(x)
#define bpop(x) __builtin_popcount(x)
#define deb(x) cerr << #x << " = " << x << endl;
typedef long long ll;
typedef unsigned long long ull;
typedef double db;
typedef long double ldb;
const double PI = 3.14159265;
const ll N = 1e6+5;
const ll mod = 1e9+7;
const ll inf = 1e9;
const ll INF = 1e18;
using namespace std;
set<pll>st;
pll b[N];
vector<int> v[N];
void solve(){
ll n , k ,cnt = 0;
cin >> n >> k;
for(int i = 1; i <= n; i++){
ll a;
cin >> a;
st.ins({a , i});
}
while(st.sz()){
++cnt;
if(st.sz() < k){
cout << "-1\n";
return;
}
for(int i = 1; i <= k; i++){
b[i] = *st.rbegin();
st.ers(*st.rbegin());
v[cnt].pb(b[i].S);
}
for(int i = 1; i <= k; i++) {
b[i].F--;
if(b[i].F) st.ins({b[i].F , b[i].S});
}
}
cout << cnt <<"\n";
for(int i = 1; i <= cnt; i++){
cout << 1 <<" ";
for(int x : v[i]) cout << x <<" ";
cout << "\n";
}
}
signed main(){
ios;
solve();
return 0;
}
/*
*/
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |