Submission #144131

# Submission time Handle Problem Language Result Execution time Memory
144131 2019-08-16T07:44:19 Z icypiggy Vision Program (IOI19_vision) C++14
Compilation error
0 ms 0 KB
void construct_network(int H, int W, int K) {
    vector<int> vdiag[H+W-1];
    vector<int> vdiag2[H+W-1];
    int idx_diag[H+W-1];
    int idx_diag2[H+W-1];
    for(int i=0; i<H; i++) {
        for(int j=0; j<W; j++) {
            vdiag[i+j].push_back(i*W+j);
            vdiag2[H-1-i+j].push_back(i*W+j);
            //cout << "vdiag: " << i*W+j << " " << i+j << " " << H-1-i+j << "\n";
        }
    }
    for(int i=0; i<H+W-1; i++) {
        idx_diag[i] = add_or(vdiag[i]);
    }

    for(int i=0; i<H+W-1; i++) {
        idx_diag2[i] = add_or(vdiag2[i]);
    }
    vector<int> tmp;
    for(int i=0; i+K<H+W-1; i++) {
        tmp.push_back(add_and({idx_diag[i], idx_diag[i+K]}));
        tmp.push_back(add_and({idx_diag2[i], idx_diag2[i+K]}));
    }
    vector<int> tmp2; // if any fail, we fail
    vector<int> vtmp;
    vector<int> vtmp2;
    for(int i=H+W-2; i>K; i--) {
        vtmp.push_back(idx_diag[i]);
        vtmp2.push_back(idx_diag2[i]);
        //cout << idx_diag[i] << "!!!\n";
    }
    for(int i=0; i+K<H+W-2; i++) {
        /*cout << i << ": ";
        for(int i: vtmp) {
            cout << i << " ";
        }
        cout << "\n";*/
        tmp2.push_back(add_and({idx_diag[i], add_or(vtmp)}));
        tmp2.push_back(add_and({idx_diag2[i], add_or(vtmp2)}));
        vtmp.pop_back();
        vtmp2.pop_back();
    }
    //add_or(tmp);
    add_and({add_or(tmp), add_not(add_or(tmp2))});
}

Compilation message

vision.cpp: In function 'void construct_network(int, int, int)':
vision.cpp:2:5: error: 'vector' was not declared in this scope
     vector<int> vdiag[H+W-1];
     ^~~~~~
vision.cpp:2:12: error: expected primary-expression before 'int'
     vector<int> vdiag[H+W-1];
            ^~~
vision.cpp:3:12: error: expected primary-expression before 'int'
     vector<int> vdiag2[H+W-1];
            ^~~
vision.cpp:8:13: error: 'vdiag' was not declared in this scope
             vdiag[i+j].push_back(i*W+j);
             ^~~~~
vision.cpp:9:13: error: 'vdiag2' was not declared in this scope
             vdiag2[H-1-i+j].push_back(i*W+j);
             ^~~~~~
vision.cpp:9:13: note: suggested alternative: 'idx_diag2'
             vdiag2[H-1-i+j].push_back(i*W+j);
             ^~~~~~
             idx_diag2
vision.cpp:14:30: error: 'vdiag' was not declared in this scope
         idx_diag[i] = add_or(vdiag[i]);
                              ^~~~~
vision.cpp:14:23: error: 'add_or' was not declared in this scope
         idx_diag[i] = add_or(vdiag[i]);
                       ^~~~~~
vision.cpp:18:31: error: 'vdiag2' was not declared in this scope
         idx_diag2[i] = add_or(vdiag2[i]);
                               ^~~~~~
vision.cpp:18:31: note: suggested alternative: 'idx_diag2'
         idx_diag2[i] = add_or(vdiag2[i]);
                               ^~~~~~
                               idx_diag2
vision.cpp:18:24: error: 'add_or' was not declared in this scope
         idx_diag2[i] = add_or(vdiag2[i]);
                        ^~~~~~
vision.cpp:20:12: error: expected primary-expression before 'int'
     vector<int> tmp;
            ^~~
vision.cpp:22:9: error: 'tmp' was not declared in this scope
         tmp.push_back(add_and({idx_diag[i], idx_diag[i+K]}));
         ^~~
vision.cpp:22:23: error: 'add_and' was not declared in this scope
         tmp.push_back(add_and({idx_diag[i], idx_diag[i+K]}));
                       ^~~~~~~
vision.cpp:25:12: error: expected primary-expression before 'int'
     vector<int> tmp2; // if any fail, we fail
            ^~~
vision.cpp:26:12: error: expected primary-expression before 'int'
     vector<int> vtmp;
            ^~~
vision.cpp:27:12: error: expected primary-expression before 'int'
     vector<int> vtmp2;
            ^~~
vision.cpp:29:9: error: 'vtmp' was not declared in this scope
         vtmp.push_back(idx_diag[i]);
         ^~~~
vision.cpp:30:9: error: 'vtmp2' was not declared in this scope
         vtmp2.push_back(idx_diag2[i]);
         ^~~~~
vision.cpp:39:9: error: 'tmp2' was not declared in this scope
         tmp2.push_back(add_and({idx_diag[i], add_or(vtmp)}));
         ^~~~
vision.cpp:39:53: error: 'vtmp' was not declared in this scope
         tmp2.push_back(add_and({idx_diag[i], add_or(vtmp)}));
                                                     ^~~~
vision.cpp:39:46: error: 'add_or' was not declared in this scope
         tmp2.push_back(add_and({idx_diag[i], add_or(vtmp)}));
                                              ^~~~~~
vision.cpp:39:24: error: 'add_and' was not declared in this scope
         tmp2.push_back(add_and({idx_diag[i], add_or(vtmp)}));
                        ^~~~~~~
vision.cpp:40:54: error: 'vtmp2' was not declared in this scope
         tmp2.push_back(add_and({idx_diag2[i], add_or(vtmp2)}));
                                                      ^~~~~
vision.cpp:45:21: error: 'tmp' was not declared in this scope
     add_and({add_or(tmp), add_not(add_or(tmp2))});
                     ^~~
vision.cpp:45:14: error: 'add_or' was not declared in this scope
     add_and({add_or(tmp), add_not(add_or(tmp2))});
              ^~~~~~
vision.cpp:45:42: error: 'tmp2' was not declared in this scope
     add_and({add_or(tmp), add_not(add_or(tmp2))});
                                          ^~~~
vision.cpp:45:27: error: 'add_not' was not declared in this scope
     add_and({add_or(tmp), add_not(add_or(tmp2))});
                           ^~~~~~~
vision.cpp:45:5: error: 'add_and' was not declared in this scope
     add_and({add_or(tmp), add_not(add_or(tmp2))});
     ^~~~~~~