제출 #438982

#제출 시각아이디문제언어결과실행 시간메모리
438982jlozano254사탕 분배 (IOI21_candies)C++17
컴파일 에러
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; }

컴파일 시 표준 에러 (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,