cipele.cpp: In function 'int32_t main()':
cipele.cpp:30:23: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
30 | for (int i = 0; i < a.size(); ++i) {
| ~~^~~~~~~~~~
cipele.cpp:31:16: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
31 | while (j < b.size() && abs(a[i] - b[j]) > mi) j += 1;
| ~~^~~~~~~~~~
cipele.cpp:33:13: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
33 | if (j == b.size()) { okay = false; break; }
| ~~^~~~~~~~~~~
cipele.cpp:7:12: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
7 | freopen("input.txt", "r", stdin);
| ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~
cipele.cpp:41:21: warning: 'answer' may be used uninitialized in this function [-Wmaybe-uninitialized]
41 | cout << answer << '\n';
| ^~~~