molecules.cpp: In function 'std::vector<int> find_subset(int, int, std::vector<int>)':
molecules.cpp:22:21: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
22 | for(ll i = 0; i < w.size(); i++)
| ~~^~~~~~~~~~
molecules.cpp:27:14: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
27 | while(tl < vect.size())
| ~~~^~~~~~~~~~~~~
molecules.cpp:29:18: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
29 | while(tr < vect.size() && sum + vect[tr].f <= u)
| ~~~^~~~~~~~~~~~~
molecules.cpp:12:11: warning: unused variable 'first' [-Wunused-variable]
12 | #define f first
| ^~~~~
molecules.cpp:18:8: note: in expansion of macro 'f'
18 | ll f = min(l, u);
| ^
molecules.cpp:19:8: warning: unused variable 'g' [-Wunused-variable]
19 | ll g = max(l, u);
| ^