bank.cpp: In function 'int main()':
bank.cpp:18:17: warning: suggest parentheses around comparison in operand of '&' [-Wparentheses]
18 | if (i&(1<<j) > 0)
| ~~~~~~~^~~
bank.cpp:33:17: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
33 | for (int j=0;j<ps[i].size();j++){
| ~^~~~~~~~~~~~~
bank.cpp:34:18: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
34 | for (int k=0;k<v.size();k++){
| ~^~~~~~~~~
bank.cpp:35:23: warning: suggest parentheses around comparison in operand of '&' [-Wparentheses]
35 | if (v[j]&ps[i][j] == 0)