제출 #680834

#제출 시각아이디문제언어결과실행 시간메모리
680834Gabriel사탕 분배 (IOI21_candies)C++17
컴파일 에러
0 ms0 KiB
#include "candies.h" #include <bits/stdc++.h> vector<int> distribute_candies(vector<int> c, vector<int> l, vector<int> r, vector<int> v){ int n = c.size(); vector<int> s(n, 0); int aa = 0; while(aa != v.size()){ int bb = l[aa]; while(bb <= r[aa]){ if(v[aa] > 0) s[bb] = min(c[bb], s[bb] + v[aa]); else s[bb] = max(0, s[bb] + v[aa]); bb++; } aa++; } return s; }

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

candies.cpp:3:1: error: 'vector' does not name a type
    3 | vector<int> distribute_candies(vector<int> c, vector<int> l, vector<int> r, vector<int> v){
      | ^~~~~~