This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
// #pragma GCC diagnostic warnig "-std=c++11"
// #pragma GCC optimize("Ofast")
// #pragma GCC optimize ("O3")
// #pragma GCC optimization ("unroll-loops")
// #pragma GCC target("sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,avx,avx2,fma")
#include <bits/stdc++.h>
using namespace std;
 
#define int long long
#define eb emplace_back
#define mp make_pair
#define pb push_back
#define pp pop_back
#define endl '\n'
#define ff first
#define ss second
#define stop exit(0)
#define sz(x) (int)x.size()
#define pause system("pause")
#define all(x) (x).begin(),(x).end()
#define deb(x) cout << #x << "-" << x  << endl
 
typedef char chr;
typedef string str;
typedef long long ll;
typedef vector <int> vii;
typedef pair <int,int> pii;
 
const long long INF = LLONG_MAX;
const int inf = INT_MAX;
const int mod = 998244353;
const int MOD = 1e9 + 7;
const int dx[] = {0,0,-1,1};
const int dy[] = {-1,1,0,0};
const double PI = 2 * acos(0.0);
const int N = 2e5 + 5;
int n,k;
string s;
int l,r,pos1,pos2,cnt,ans;
inline void test_case () {  
    
    cin >> n >> k;
    cin >> s;
    s = " " + s;
    ans = inf;
    for (int l = 1; l <= n; l++) {
        if (s[l] != 'J') continue;
        cnt = 0;
        pos1 = inf;
        for (int i = l; i >= 1; i--) {
            if (s[i] == 'J') cnt++;
            if (cnt == k) {
                pos1 = i;
                break;
            }
        }
        if (pos1 == inf) continue;
        cnt = 0;
        r = inf;
        for (int i = l; i <= n; i++) {
            if (s[i] == 'O') cnt++;
            if (cnt == k) {
                r = i;
                break;
            }
        }
        if (r == inf) continue;
        cnt = 0;
        pos2 = inf;
        for (int i = r; i <= n; i++) {
            if (s[i] == 'I') cnt++;
            if (cnt == k) {
                pos2 = i;
                break;
            }
        }
        if (pos2 == inf) continue;
        // cout << pos1 << " " << l << " " << r << " " << pos2 << " " << pos2 - pos1 + 1 - 3*k << endl;
        ans = min(ans,pos2-pos1+1-3*k);
    }
    if (ans == inf) {
        cout << -1 << endl;
        return;
    }
    cout << ans << endl;
    
}
 
signed main () {
 
    ios_base :: sync_with_stdio(0);
    cin.tie(0); cout.tie(0);
    
    int T = 1;
    // cin >> T;
    while(T--) {
        test_case();
    }
    
    return 0;
 
}
| # | Verdict  | Execution time | Memory | Grader output | 
|---|
| Fetching results... | 
| # | Verdict  | Execution time | Memory | Grader output | 
|---|
| Fetching results... | 
| # | Verdict  | Execution time | Memory | Grader output | 
|---|
| Fetching results... |