ho_t2.cpp: In function 'int32_t main()':
ho_t2.cpp:19:20: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
19 | for (int i = 0; i < s.size(); i++){
| ~~^~~~~~~~~~
ho_t2.cpp:22:28: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
22 | for (int i = 0; i + k - 1 < pos[0].size(); i++){
| ~~~~~~~~~~^~~~~~~~~~~~~~~
ho_t2.cpp:25:11: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
25 | if (tmp >= pos[1].size()) continue;
| ~~~~^~~~~~~~~~~~~~~~
ho_t2.cpp:28:11: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
28 | if (tmp >= pos[2].size()) continue;
| ~~~~^~~~~~~~~~~~~~~~
ho_t2.cpp:16:23: warning: unused variable 'st' [-Wunused-variable]
16 | int n, k, ans = 1e9, st, cur; cin >> n >> k;
| ^~