답안 #530177

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
530177 2022-02-24T18:23:31 Z pedroslrey Teams (CEOI11_tea) C++17
0 / 100
314 ms 262148 KB
#include <bits/stdc++.h>

using namespace std;

int main() {
    ios_base::sync_with_stdio(0);
    cin.tie(0);

    int n;
    cin >> n;

    vector<pair<int, int>> xs;
    for (int i = 0; i < n; ++i) {
        int x;
        cin >> x;

        xs.emplace_back(-x, i);
    }

    sort(xs.begin(), xs.end());

    vector<vector<int>> ans;
    for (int i = 0; i < n;) {
        ans.emplace_back();
        for (int j = i; j < i - xs[i].first; ++j)
            ans.back().push_back(xs[j].second);
        i += xs[i].first;
    }

    cout << ans.size() << '\n';
    for (auto xs: ans) {
        cout << xs.size() << " ";
        for (int x: xs)
            cout << x+1 << " ";
        cout << '\n';
    }
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 204 KB Integer 2 violates the range [1, 1]
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 204 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 314 ms 262148 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 3 ms 588 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 3 ms 588 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 16 ms 2112 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 15 ms 2120 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 126 ms 12532 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 173 ms 17996 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 187 ms 24356 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -