dango_maker.cpp: In function 'void solve()':
dango_maker.cpp:3:44: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<std::vector<long long int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
3 | #define range(it, a, b) for (ll it = a; it < b; it++)
......
67 | range(i, 0, adj.size()) {
| ~~~~~~~~~~~~~~~~
dango_maker.cpp:67:5: note: in expansion of macro 'range'
67 | range(i, 0, adj.size()) {
| ^~~~~
dango_maker.cpp:3:44: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<std::vector<long long int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
3 | #define range(it, a, b) for (ll it = a; it < b; it++)
......
75 | range(i, 0, adj.size()) {
| ~~~~~~~~~~~~~~~~
dango_maker.cpp:75:5: note: in expansion of macro 'range'
75 | range(i, 0, adj.size()) {
| ^~~~~
dango_maker.cpp:3:44: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<std::vector<long long int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
3 | #define range(it, a, b) for (ll it = a; it < b; it++)
......
86 | range(i, 0, adj.size()) {
| ~~~~~~~~~~~~~~~~
dango_maker.cpp:86:5: note: in expansion of macro 'range'
86 | range(i, 0, adj.size()) {
| ^~~~~
dango_maker.cpp: In function 'void setio(std::string)':
dango_maker.cpp:21:16: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
21 | freopen((name + ".in").c_str(), "r", stdin);
| ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
dango_maker.cpp:22:16: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
22 | freopen((name + ".out").c_str(), "w", stdout);
| ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~