burza.cpp: In function 'void dfs(int, int, int)':
burza.cpp:24:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
24 | for (int i = 0; i < v[x].size(); i++) {
| ~~^~~~~~~~~~~~~
burza.cpp: In function 'int main()':
burza.cpp:50:20: warning: comparison of integer expressions of different signedness: 'std::vector<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
50 | if (br[i].size() <= i) {
| ~~~~~~~~~~~~~^~~~
burza.cpp:61:22: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
61 | for (int j = 0; j < br[i].size(); j++) {
| ~~^~~~~~~~~~~~~~
burza.cpp:63:27: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
63 | for (int slj = 0; slj < e[i][j].size(); slj++) nova |= (1 << e[i][j][slj]);
| ~~~~^~~~~~~~~~~~~~~~
burza.cpp:66:22: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
66 | for (int j = 0; j < br[i+1].size(); j++) {
| ~~^~~~~~~~~~~~~~~~