hidden.cpp: In function 'std::vector<int> findSequence(int)':
hidden.cpp:11:7: error: 'cnt0' was not declared in this scope
11 | cnt0 = i-1, cnt1 = N-(i-1);
| ^~~~
hidden.cpp:11:19: error: 'cnt1' was not declared in this scope
11 | cnt0 = i-1, cnt1 = N-(i-1);
| ^~~~
hidden.cpp:19:7: error: 'cnt1' was not declared in this scope
19 | cnt1 = i-1, cnt0 = N-(i-1);
| ^~~~
hidden.cpp:19:19: error: 'cnt0' was not declared in this scope
19 | cnt1 = i-1, cnt0 = N-(i-1);
| ^~~~
hidden.cpp:23:12: error: 'cnt1' was not declared in this scope
23 | int o = (cnt1 < cnt0), len = min(cnt1, cnt0);
| ^~~~
hidden.cpp:23:19: error: 'cnt0' was not declared in this scope
23 | int o = (cnt1 < cnt0), len = min(cnt1, cnt0);
| ^~~~
hidden.cpp:24:18: error: 'len' was not declared in this scope; did you mean 'mblen'?
24 | vector <int> p(len+1);
| ^~~
| mblen
grader.cpp: In function 'int main()':
grader.cpp:28:26: warning: format '%d' expects argument of type 'int', but argument 3 has type 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wformat=]
28 | fprintf (fifo_out, "%d\n", ans.size ());
| ~^ ~~~~~~~~~~~
| | |
| int std::vector<int>::size_type {aka long unsigned int}
| %ld
grader.cpp:29:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
29 | for (int i=0; i<ans.size () && i < N; i++)
| ~^~~~~~~~~~~~