paint.cpp: In function 'long long int recur(long long int, long long int)':
paint.cpp:12:14: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
12 | if(s_idx == S.size() && c_idx == C.size()) { //works
| ~~~~~~^~~~~~~~~~~
paint.cpp:12:35: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
12 | if(s_idx == S.size() && c_idx == C.size()) { //works
| ~~~~~~^~~~~~~~~~~
paint.cpp:15:14: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
15 | if(s_idx >= S.size() || c_idx > C.size()) { //out of bounds
| ~~~~~~^~~~~~~~~~~
paint.cpp:15:35: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
15 | if(s_idx >= S.size() || c_idx > C.size()) { //out of bounds
| ~~~~~~^~~~~~~~~~
paint.cpp:34:19: warning: unused variable 'ok' [-Wunused-variable]
34 | long long ok = recur(s_idx + 1, c_idx);
| ^~
paint.cpp:46:25: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
46 | if(s_idx + C[c_idx] < S.size()) {
| ~~~~~~~~~~~~~~~~~^~~~~~~~~~
paint.cpp:51:10: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
51 | if(x == white.size() || white[x] >= s_idx + C[c_idx]) {
| ~~^~~~~~~~~~~~~~~
paint.cpp:56:25: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
56 | if(s_idx + C[c_idx] == S.size() || S[s_idx + C[c_idx]] != 'X') {
| ~~~~~~~~~~~~~~~~~^~~~~~~~~~~
paint.cpp: In function 'std::string solve_puzzle(std::string, std::vector<int>)':
paint.cpp:75:28: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
75 | for(long long i = 0; i < S.size(); i++) {
| ~~^~~~~~~~~~
paint.cpp:80:28: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
80 | for(long long i = 0; i < c.size(); i++) {
| ~~^~~~~~~~~~
paint.cpp:89:15: warning: unused variable 'ok' [-Wunused-variable]
89 | long long ok = recur(0, 0);
| ^~