naboj.cpp: In function 'int main()':
naboj.cpp:10:2: warning: this 'while' clause does not guard... [-Wmisleading-indentation]
10 | while(n--);
| ^~~~~
naboj.cpp:11:2: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'while'
11 | {
| ^
naboj.cpp:38:15: warning: comparison of integer expressions of different signedness: 'std::vector<long long int>::size_type' {aka 'long unsigned int'} and 'long long int' [-Wsign-compare]
38 | if(ans.size()!=m)
| ~~~~~~~~~~^~~
naboj.cpp:15:7: warning: 'dp[<unknown>]' may be used uninitialized in this function [-Wmaybe-uninitialized]
15 | dp[b]++;
| ~~~~^