Submission #104689

#TimeUsernameProblemLanguageResultExecution timeMemory
104689promotaWiring (IOI17_wiring)C++14
Compilation error
0 ms0 KiB
int min_total_length(vector<int> r,vector<int> b){ int minLen=0; int n=r.size(); int m=b.size(); for(int j=0;j<n-1;j++){ minLen += b[0]-r[j]; } for(int i=1;i<m;i++){ minLen += b[i]-r[n-1]; } return minLen; }

Compilation message (stderr)

wiring.cpp:1:22: error: 'vector' was not declared in this scope
 int min_total_length(vector<int> r,vector<int> b){
                      ^~~~~~
wiring.cpp:1:29: error: expected primary-expression before 'int'
 int min_total_length(vector<int> r,vector<int> b){
                             ^~~
wiring.cpp:1:36: error: 'vector' was not declared in this scope
 int min_total_length(vector<int> r,vector<int> b){
                                    ^~~~~~
wiring.cpp:1:43: error: expected primary-expression before 'int'
 int min_total_length(vector<int> r,vector<int> b){
                                           ^~~
wiring.cpp:1:49: error: expression list treated as compound expression in initializer [-fpermissive]
 int min_total_length(vector<int> r,vector<int> b){
                                                 ^