제출 #896436

#제출 시각아이디문제언어결과실행 시간메모리
896436SuPythonyA Plus B (IOI23_aplusb)C++17
컴파일 에러
0 ms0 KiB
vector<int> smallest_sums(int N, vector<int> A, vector<int> B) {
    vector<int> ans;
    int s=0, a=0, b=0;
    while (s<N) {
        ans.push_back(A[a]+B[b]);
        s++;
        if (a<N-1&&A[a+1]+B[b]<=B[b+1]+A[a]) a++;
        else b++;
    }
    return ans;
}

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

aplusb.cpp:1:1: error: 'vector' does not name a type
    1 | vector<int> smallest_sums(int N, vector<int> A, vector<int> B) {
      | ^~~~~~