Submission #164562

#TimeUsernameProblemLanguageResultExecution timeMemory
164562NachoLibreVision Program (IOI19_vision)C++14
Compilation error
0 ms0 KiB
#include <bits/stdc++.h> using namespace std; #include "vision.h" int h, w, c0, c1, d; int pti(int i, int j) { return w * i + j; } vector<int> md (int i, int d) { // 0 - / // 1 - \ vector<int> v; int j; if (d) { j = h - 1; if(i >= w) { j -= i - w + 1; i = w - 1; } } else { j = 0; if(i >= w) { j += i - w + 1; i = w - 1; } } while (i >= 0 && j >= 0 && j < h) { if (d) --j; else ++j; --i; v.push_back (pti(i, j)); } return v; } int amatmata (int k) { vector<int> v; d = add_or({c0}); for(int i = 0; i < w + h - 1; ++i) { d = add_or ({d, md (i - k, 0)}); v.push_back (add_and ({d, md (i, 0)})); } d = add_or({c0}); for(int i = 0; i < w + h - 1; ++i) { d = add_or({d, md (i - k, 1)}); v.push_back(add_and ({d, md (i, 1)})); } return add_or(v); } void contruct_network (int H, int W, int K) { if (H * W == 2) { add_or ({0}); return; } c0 = add_and ({0, 1, 2}); c1 = add_not (c0); h = H; w = W; add_and({amatmata (K), add_not (amatmata (K + 1))}); }

Compilation message (stderr)

vision.cpp:13:5: warning: multi-line comment [-Wcomment]
     // 1 - \
     ^
vision.cpp: In function 'std::vector<int> md(int, int)':
vision.cpp:33:9: error: 'v' was not declared in this scope
         v.push_back (pti(i, j));
         ^
vision.cpp:35:12: error: 'v' was not declared in this scope
     return v;
            ^
vision.cpp: In function 'int amatmata(int)':
vision.cpp:42:39: error: could not convert '{d, md(int, int)(0)}' from '<brace-enclosed initializer list>' to 'std::vector<int>'
         d = add_or ({d, md (i - k, 0)});
                                       ^
vision.cpp:43:45: error: could not convert '{d, md(int, int)(0)}' from '<brace-enclosed initializer list>' to 'std::vector<int>'
         v.push_back (add_and ({d, md (i, 0)}));
                                             ^
vision.cpp:47:38: error: could not convert '{d, md(int, int)(1)}' from '<brace-enclosed initializer list>' to 'std::vector<int>'
         d = add_or({d, md (i - k, 1)});
                                      ^
vision.cpp:48:44: error: could not convert '{d, md(int, int)(1)}' from '<brace-enclosed initializer list>' to 'std::vector<int>'
         v.push_back(add_and ({d, md (i, 1)}));
                                            ^