icc.cpp: In function 'int bs(int, int)':
icc.cpp:16:16: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
16 | for(int i=0; i<g[y].size(); ++i) gy[i] = g[y][i];
| ~^~~~~~~~~~~~
icc.cpp:18:12: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
18 | if(r + s >= g[x].size()) continue;
| ~~~~~~^~~~~~~~~~~~~~
icc.cpp: In function 'void run(int)':
icc.cpp:39:13: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
39 | if(y + s >= a.size()) continue;
| ~~~~~~^~~~~~~~~~~
icc.cpp:29:21: warning: unused variable 'l' [-Wunused-variable]
29 | int x = 0, y = 0, l, r;
| ^
icc.cpp:29:24: warning: unused variable 'r' [-Wunused-variable]
29 | int x = 0, y = 0, l, r;
| ^