/ SeriousOJ /

Record Detail

Accepted


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 580.0 KiB
#2 Accepted 2ms 576.0 KiB
#3 Accepted 2ms 484.0 KiB
#4 Accepted 2ms 576.0 KiB
#5 Accepted 3ms 836.0 KiB
#6 Accepted 11ms 3.406 MiB
#7 Accepted 24ms 8.371 MiB
#8 Accepted 23ms 8.375 MiB
#9 Accepted 82ms 34.434 MiB
#10 Accepted 233ms 96.309 MiB
#11 Accepted 232ms 96.492 MiB
#12 Accepted 157ms 96.492 MiB
#13 Accepted 232ms 96.496 MiB
#14 Accepted 229ms 96.496 MiB
#15 Accepted 225ms 96.496 MiB
#16 Accepted 209ms 96.457 MiB
#17 Accepted 194ms 96.375 MiB
#18 Accepted 2ms 512.0 KiB

Code

#include <bits/stdc++.h>
#define endl '\n'
#define F first
#define S second
using namespace std;
#define ll long long
#define pb push_back
#define mod 1000000007
// #define int long long
#define all(x)      x.begin(),x.end()
#define allr(x)     x.rbegin(),x.rend()
#define CheckBit(x,k)   (x & (1LL << k))
#define SetBit(x,k)     (x |= (1LL << k))
#define ClearBit(x,k)   (x &= ~(1LL << k))
#define LSB(mask)       __builtin_ctzll(mask)
#define MSB(mask)       63-__builtin_clzll(mask) 
#define print(x)    cout << #x << " : " << x << endl
#define error1(x)   cerr << #x << " = " << (x) <<endl
#define coutall(v)  for(auto &it: v) cout<<it<<' '; cout<<endl
#define Abid_52     ios::sync_with_stdio(false);cin.tie(0),cin.tie(0)
#define error2(a,b) cerr<<"( "<<#a<<" , "<<#b<<" ) = ( "<<(a)<<" , "<<(b)<<" )\n"
#define UNIQUE(x)   sort(all(x)), x.erase(unique(all(x)), x.end()), x.shrink_to_fit()
template <typename T, typename U> T ceil(T x, U y) {return (x > 0 ? (x + y - 1) / y : x / y);}
template <typename T, typename U> T floor(T x, U y) {return (x > 0 ? x / y : (x - y + 1) / y);}

const int N = 5001;
int make_a(char ch){
    if(ch == 'a')return 0;
    return ('z' - ch) + 1;
}
int make_b(char ch){
    if(ch == 'b')return 0;
    return make_a(ch) + 1;
}
int make_c(char ch){
    if(ch == 'c')return 0;
    return make_b(ch) + 1;
}
int dp[N][N];
int n, m;
vector<int>cost;
int rec(int i, int cnt){
    if(cnt == 0){
        return 0;
    }
    if (i >= n - 2)
    {
        return 10000000;
    }
    if(dp[i][cnt] != -1){
        return dp[i][cnt];
    }
    int mn = rec(i + 1, cnt);
    mn = min(mn, cost[i] + rec(i + 3, cnt - 1));
    return dp[i][cnt] = mn;
}
void solve()
{
    cin >> n >> m;
    string s;
    cin >> s;
    for(int i = 0; i <= n; i++){
        for(int j = 0; j <= n; j++){
            dp[i][j] = -1;
        }
    }
    cost.clear();
    for(int i = 0; i + 2 < n; i++){
        int totCost = make_a(s[i]) + make_b(s[i + 1]) + make_c(s[i + 2]);
        cost.push_back(totCost);
    }
    for(int i = n / 3 + 1; i >= 0; i--){
        if(rec(0, i) <= m){
            cout << i << endl;
            return;
        }
    }

}

int32_t main()
{
    Abid_52;
    int t = 1;
    cin >> t;
    for (int tc = 1; tc <= t; ++tc)
    {
        // cout << "Case " << tc << ": ";
        solve();
    }
}

Information

Submit By
Type
Submission
Problem
P1100 Substring ABC
Language
C++17 (G++ 13.2.0)
Submit At
2024-10-05 07:17:43
Judged At
2024-11-11 02:40:19
Judged By
Score
100
Total Time
233ms
Peak Memory
96.496 MiB