제출 #409186

#제출 시각아이디문제언어결과실행 시간메모리
409186snasibov05Olivander (COCI18_olivander)C++14
컴파일 에러
0 ms0 KiB
#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;
}

컴파일 시 표준 에러 (stderr) 메시지

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