Submission #104690

#TimeUsernameProblemLanguageResultExecution timeMemory
104690promota전선 연결 (IOI17_wiring)C++14
Compilation error
0 ms0 KiB
long long min_total_length(vector<int> r,vector<int> b){
    long long 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:28: error: 'vector' was not declared in this scope
 long long min_total_length(vector<int> r,vector<int> b){
                            ^~~~~~
wiring.cpp:1:35: error: expected primary-expression before 'int'
 long long min_total_length(vector<int> r,vector<int> b){
                                   ^~~
wiring.cpp:1:42: error: 'vector' was not declared in this scope
 long long min_total_length(vector<int> r,vector<int> b){
                                          ^~~~~~
wiring.cpp:1:49: error: expected primary-expression before 'int'
 long long min_total_length(vector<int> r,vector<int> b){
                                                 ^~~
wiring.cpp:1:55: error: expression list treated as compound expression in initializer [-fpermissive]
 long long min_total_length(vector<int> r,vector<int> b){
                                                       ^