Submission #438982

#TimeUsernameProblemLanguageResultExecution timeMemory
438982jlozano254Distributing Candies (IOI21_candies)C++17
Compilation error
0 ms0 KiB
std::vector<int> distribute_candies(std::vector<int> c, std::vector<int> l,
                                    std::vector<int> r, std::vector<int> v) {
    int n = c.size();
    std::vector<int> s;

    long long int acum = 0;

    for (int i = 0; i < v.size(); ++i) acum += v[i];

    for (int i = 0; i < n; ++i) s.push_back(std::min((int) acum, c[i]));

    return s;
}

Compilation message (stderr)

candies.cpp:1:6: error: 'vector' in namespace 'std' does not name a template type
    1 | std::vector<int> distribute_candies(std::vector<int> c, std::vector<int> l,
      |      ^~~~~~
candies.cpp:1:1: note: 'std::vector' is defined in header '<vector>'; did you forget to '#include <vector>'?
  +++ |+#include <vector>
    1 | std::vector<int> distribute_candies(std::vector<int> c, std::vector<int> l,