del13.cpp: In function 'int main()':
del13.cpp:56:26: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
56 | if (!arr[i] && cnt == (n-k)/2 - ans.size()) {
| ~~~~^~~~~~~~~~~~~~~~~~~~~~~
del13.cpp:57:31: warning: comparison of integer expressions of different signedness: 'std::vector<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
57 | while (ans.size() * 2 < n-k)
| ~~~~~~~~~~~~~~~^~~~~
del13.cpp:62:20: warning: comparison of integer expressions of different signedness: 'std::vector<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
62 | if (ans.size() == (n-k)/2) {
| ~~~~~~~~~~~^~~~~~~~~~
del13.cpp:64:25: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
64 | for (int i = 0; i < ans.size(); i++)
| ~~^~~~~~~~~~~~
del13.cpp:65:34: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
65 | cout << ans[i] << " \n"[i==ans.size()-1];
| ~^~~~~~~~~~~~~~
del13.cpp:66:27: warning: comparison of integer expressions of different signedness: 'std::vector<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
66 | } else if (ans.size() == (n-k)/2-1) {
| ~~~~~~~~~~~^~~~~~~~~~~~
del13.cpp:89:28: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
89 | if (!arr[i] && cnt == (n-k)/2 - ans.size()) {
| ~~~~^~~~~~~~~~~~~~~~~~~~~~~
del13.cpp:90:33: warning: comparison of integer expressions of different signedness: 'std::vector<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
90 | while (ans.size() * 2 < n-k)
| ~~~~~~~~~~~~~~~^~~~~
del13.cpp:94:25: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
94 | for (int i = 0; i < ans.size(); i++)
| ~~^~~~~~~~~~~~
del13.cpp:95:34: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
95 | cout << ans[i] << " \n"[i==ans.size()-1];
| ~^~~~~~~~~~~~~~
del13.cpp:13:10: warning: unused variable 'tf' [-Wunused-variable]
13 | bool tf = 1;
| ^~