답안 #409186

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
409186 2021-05-20T10:38:14 Z snasibov05 Olivander (COCI18_olivander) C++14
컴파일 오류
0 ms 0 KB
#include <iostream>
#include <vector>

using namespace std;

int main(){
    int n; cin >> n;
    vector<int> x(n), y(n);
    for (int i = 0; i < n; ++i) {
        cin >> x[i];
    }
    for (int i = 0; i < n; ++i){
        cin >> y[i];
    }

    sort(x.begin(), x.end());
    sort(y.begin(), y.end());

    for (int i = 0; i < n; ++i){
        if (x[i] > y[i]){
            cout << "NE\n";
            return 0;
        }
    }

    cout << "DA\n";
    return 0;
}

Compilation message

olivander.cpp: In function 'int main()':
olivander.cpp:16:5: error: 'sort' was not declared in this scope; did you mean 'qsort'?
   16 |     sort(x.begin(), x.end());
      |     ^~~~
      |     qsort