train.cpp: In function 'std::vector<int> subtask1()':
train.cpp:4:39: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
4 | #define FOR(i, x, y) for(int i = x; i < y; ++i)
......
27 | FOR(j, 0, g[i].e.size()){
| ~~~~~~~~~~~~~~~~~~~
train.cpp:27:3: note: in expansion of macro 'FOR'
27 | FOR(j, 0, g[i].e.size()){
| ^~~
train.cpp: In function 'int s2dfs(int, int)':
train.cpp:4:39: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
4 | #define FOR(i, x, y) for(int i = x; i < y; ++i)
......
67 | FOR(i, 0, g[start].e.size()){
| ~~~~~~~~~~~~~~~~~~~~~~~
train.cpp:67:2: note: in expansion of macro 'FOR'
67 | FOR(i, 0, g[start].e.size()){
| ^~~
train.cpp: In function 'std::vector<int> subtask2()':
train.cpp:4:39: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<node>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
4 | #define FOR(i, x, y) for(int i = x; i < y; ++i)
......
100 | FOR(i, 0, g.size()){
| ~~~~~~~~~~~~~~
train.cpp:100:2: note: in expansion of macro 'FOR'
100 | FOR(i, 0, g.size()){
| ^~~
train.cpp: In function 'std::vector<int> who_wins(std::vector<int>, std::vector<int>, std::vector<int>, std::vector<int>)':
train.cpp:4:39: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
4 | #define FOR(i, x, y) for(int i = x; i < y; ++i)
......
110 | FOR(i, 0, u.size()){
| ~~~~~~~~~~~~~~
train.cpp:110:2: note: in expansion of macro 'FOR'
110 | FOR(i, 0, u.size()){
| ^~~
train.cpp:4:39: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
4 | #define FOR(i, x, y) for(int i = x; i < y; ++i)
......
114 | FOR(i, 0, a.size()){
| ~~~~~~~~~~~~~~
train.cpp:114:2: note: in expansion of macro 'FOR'
114 | FOR(i, 0, a.size()){
| ^~~