molecules.cpp: In function 'std::vector<int> find_subset(int, int, std::vector<int>)':
molecules.cpp:10:15: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
10 | while (pl < w.size() && pr < w.size() && (now < l || now > u)) {
| ~~~^~~~~~~~~~
molecules.cpp:10:32: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
10 | while (pl < w.size() && pr < w.size() && (now < l || now > u)) {
| ~~~^~~~~~~~~~
molecules.cpp:12:22: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
12 | if (pr+1 < w.size()) now += w[++pr];
| ~~~~~^~~~~~~~~~
molecules.cpp:16:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
16 | if (pl < w.size()) now -= w[pl++];
| ~~~^~~~~~~~~~