| # | Time | Username | Problem | Language | Result | Execution time | Memory | 
|---|---|---|---|---|---|---|---|
| 532437 | definitelynotmee | Teams (CEOI11_tea) | C++98 | 277 ms | 72764 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.
#include<bits/stdc++.h>
#define mp make_pair
#define mt make_tuple
#define all(x) x.begin(), x.end()
#define ff first
#define ss second
using namespace std;
template <typename T>
using matrix = vector<vector<T>>;
typedef unsigned int uint;
typedef unsigned long long ull;
typedef long long ll;
typedef pair<int,int> pii;
typedef pair<ll,ll> pll;
const ll INFL = (1LL<<62)-1;
const int INF = (1<<30)-1;
const double EPS = 1e-7;
const int MOD = 1e9 + 7;
const int RANDOM = chrono::high_resolution_clock::now().time_since_epoch().count();
const int MAXN = 1e6+1;
int main(){
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);
    int n;
    cin >> n;
    vector<int> v(n);
    for(int i = 0; i < n; i++)
        cin >> v[i];
    vector<int> o(n);
    iota(all(o),0);
    sort(all(o),[&](int a, int b){
        return v[a] > v[b];
    });
    matrix<int> resp;
    int start = 0;
    while(start < n && n-start>=v[o[start]]){
        resp.push_back({});
        for(int i = 0; i < v[o[start]]; i++){
            resp.back().push_back(o[i+start]);
        }
        start+=v[o[start]];
    };
    reverse(all(resp));
    for(int i = 0; i < (int)resp.size()-1; i++){
        assert(resp[i].size() <= resp[i+1].size());
    }
    while(start < n){
        int ptr = 0;
        while(start < n && ptr < resp.size() && (ptr == 0 || resp[ptr-1].size() > resp[ptr].size())){
            resp[ptr].push_back(o[start]);
            ptr++;
            start++;
        }
    }
    cout << resp.size() << '\n';
    assert(resp.size());
    int tot =0;
    for(vector<int>& i : resp){
        tot+=i.size();
    }
    assert(tot == n);
    for(vector<int>& i : resp){
        cout << i.size() << ' ';
        assert(i.size());
        for(int j : i){
            cout << j+1 << ' ';
        }
        cout << '\n';
    }
    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... | ||||
| # | 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... | ||||
