books.cpp: In function 'll minimum_walk(std::vector<int>, int)':
books.cpp:42:23: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::vector<long long int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
42 | for (int a = 0; a < cyc.size(); a++) {
| ~~^~~~~~~~~~~~
books.cpp:43:29: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::vector<long long int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
43 | for (int b = a+1; b < cyc.size(); b++) {
| ~~^~~~~~~~~~~~
books.cpp:45:31: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
45 | for (int i = 0; i < cyc[a].size(); i++) {
| ~~^~~~~~~~~~~~~~~
books.cpp:46:35: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
46 | for (int j = 0; j < cyc[b].size(); j++) {
| ~~^~~~~~~~~~~~~~~
books.cpp:55:23: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::vector<long long int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
55 | for (int i = 0; i < cyc.size(); i++) lnk[i] = i;
| ~~^~~~~~~~~~~~