construction.cpp: In function 'int main()':
construction.cpp:5:38: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
5 | #define FOR(i, k, n) for(ll i = k; i <= n; i++)
......
57 | FOR(i, 0, vv.size() - 2)
| ~~~~~~~~~~~~~~~~~~~
construction.cpp:57:4: note: in expansion of macro 'FOR'
57 | FOR(i, 0, vv.size() - 2)
| ^~~
construction.cpp:5:38: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
5 | #define FOR(i, k, n) for(ll i = k; i <= n; i++)
......
58 | FOR(j, i + 1, vv.size() - 1)
| ~~~~~~~~~~~~~~~~~~~~~~~
construction.cpp:58:5: note: in expansion of macro 'FOR'
58 | FOR(j, i + 1, vv.size() - 1)
| ^~~