net.cpp: In function 'int main()':
net.cpp:23:14: warning: format '%d' expects argument of type 'int', but argument 2 has type 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wformat=]
23 | printf("%d\n", (ans.size() + 1) / 2);
| ~^ ~~~~~~~~~~~~~~~~~~~~
| | |
| int std::vector<int>::size_type {aka long unsigned int}
| %ld
net.cpp:24:19: 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<(ans.size() + 1) / 2; i++) printf("%d %d\n", ans[i], ans[i+ans.size()/2]);
| ~^~~~~~~~~~~~~~~~~~~~~
net.cpp:16:10: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
16 | scanf("%d", &N);
| ~~~~~^~~~~~~~~~
net.cpp:18:14: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
18 | scanf("%d %d", &x, &y);
| ~~~~~^~~~~~~~~~~~~~~~~