selling_rna.cpp: In function 'int main()':
selling_rna.cpp:27:30: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
27 | for(int j = 0; j < s.size(); j++){
| ~~^~~~~~~~~~
selling_rna.cpp:41:30: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
41 | for(int j = 0; j < s.size(); j++){
| ~~^~~~~~~~~~
selling_rna.cpp:58:26: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
58 | for(int i = 0; i < p.size(); i++) h1 = (ll(h1)*A)%B, h1 = (ll(h1)+p[i])%B;
| ~~^~~~~~~~~~
selling_rna.cpp:59:26: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
59 | for(int i = 0; i < q.size(); i++) h2 = (ll(h2)*A)%B, h2 = (ll(h2)+q[i])%B;
| ~~^~~~~~~~~~
selling_rna.cpp:65:26: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::vector<int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
65 | for(int i = 0; i < pref.size(); i++){
| ~~^~~~~~~~~~~~~