molecules.cpp: In function 'std::vector<int> find_subset(int, int, std::vector<int>)':
molecules.cpp:10:19: warning: comparison of integer expressions of different signedness: 'll' {aka 'long long int'} and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
10 | for (ll i = 0; i < w.size(); i++) act[i] = make_pair(w[i], i);
| ~~^~~~~~~~~~
molecules.cpp:12:19: warning: comparison of integer expressions of different signedness: 'll' {aka 'long long int'} and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
12 | for (ll i = 0; i < w.size(); i++)
| ~~^~~~~~~~~~
molecules.cpp:14:19: warning: comparison of integer expressions of different signedness: 'll' {aka 'long long int'} and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
14 | for (ll i = 1; i <= w.size(); i++) {
| ~~^~~~~~~~~~~