답안 #672658

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
672658 2022-12-17T10:15:50 Z haxorman Teams (CEOI11_tea) C++14
0 / 100
254 ms 27868 KB
#include <bits/stdc++.h>
using namespace std;
 
const int mxN = 1e6 + 7;

pair<int,int> arr[mxN];

int32_t main() {
    ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
	
    int n;
    cin >> n;

    for (int i = 0; i < n; ++i) {
        cin >> arr[i].first;
        arr[i].second = i + 1;
    }
    sort(arr, arr + n, greater<pair<int,int>>());
    
    vector<vector<int>> ans;
    for (int i = 0; i < n;) {
        if (arr[i].first > n - i) {
            ans.back().push_back(arr[i].second);
            ++i;
        }
        else {
            ans.push_back({arr[i].second});
            int tmp = i + 1;
            while (ans.back().size() < arr[i].first) {
                ans.back().push_back(arr[tmp++].second);
            }
            i = tmp;
        }
    }
    cout << ans.size() << "\n";
    for (auto vec : ans) {
        for (auto x : vec) {
            cout << x << ' ';
        }
        cout << "\n";
    }
}

Compilation message

tea.cpp: In function 'int32_t main()':
tea.cpp:29:38: warning: comparison of integer expressions of different signedness: 'std::vector<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
   29 |             while (ans.back().size() < arr[i].first) {
      |                    ~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 212 KB Unexpected end of file - int32 expected
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 212 KB Unexpected end of file - int32 expected
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 328 KB Unexpected end of file - int32 expected
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 468 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 2 ms 468 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 19 ms 2376 KB Unexpected end of file - int32 expected
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 22 ms 2572 KB Unexpected end of file - int32 expected
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 184 ms 18572 KB Unexpected end of file - int32 expected
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 247 ms 25200 KB Unexpected end of file - int32 expected
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 254 ms 27868 KB Output isn't correct
2 Halted 0 ms 0 KB -