Submission #896488

#TimeUsernameProblemLanguageResultExecution timeMemory
896488SuPythonyA Plus B (IOI23_aplusb)C++17
Compilation error
0 ms0 KiB
#include <bits/stdc++.h>
using namespace std;

vector<long long> smallest_sums(int N, vector<long long> A, vector<long long> B) {
    vector<long long> ans;
    int s=0, a=0, b=0;
    while (s<N) {
        ans.push_back(A[a]+B[b]);
        s++;
        if (b==N-1) a++;
        else if (a==N-1) b++;
        else if (A[a+1]+B[b]<=B[b+1]+A[a]) a++;
        else b++;
    }
    return ans;
}

Compilation message (stderr)

/usr/bin/ld: /tmp/ccfyvEjW.o: in function `main':
grader.cpp:(.text.startup+0x271): undefined reference to `smallest_sums(int, std::vector<int, std::allocator<int> >, std::vector<int, std::allocator<int> >)'
collect2: error: ld returned 1 exit status