/ SeriousOJ /

Record Detail

Accepted


  
# Status Time Cost Memory Cost
#1 Accepted 2ms 540.0 KiB
#2 Accepted 2ms 796.0 KiB
#3 Accepted 2ms 540.0 KiB
#4 Accepted 2ms 540.0 KiB
#5 Accepted 5ms 3.121 MiB
#6 Accepted 14ms 13.066 MiB
#7 Accepted 32ms 24.07 MiB
#8 Accepted 34ms 25.812 MiB
#9 Accepted 157ms 63.758 MiB
#10 Accepted 231ms 129.461 MiB
#11 Accepted 212ms 128.637 MiB
#12 Accepted 368ms 142.828 MiB
#13 Accepted 205ms 130.695 MiB
#14 Accepted 207ms 130.656 MiB
#15 Accepted 202ms 130.008 MiB
#16 Accepted 263ms 134.891 MiB
#17 Accepted 341ms 139.035 MiB
#18 Accepted 3ms 540.0 KiB

Code

#include<bits/stdc++.h>
using namespace std;
#define fast ios_base::sync_with_stdio(false);cin.tie(0);cout.tie(0);
#define dbg(a,b,c,d) cerr<<a<<"  "<<b<<"  "<<c<<"  "<<d<<endl;
#define kill(a) {cout<<a<<endl;continue;}
#define KILL(a) {cout<<a<<endl;return 0;}
#define debug cerr<<"Error Found"<<endl;
#define mem(a,b) memset(a,b,sizeof(a))
#define lcm(a, b) (a/__gcd(a,b))*b
#define w(t) cin>>t;while(t--)
#define pi  2 * acos(0.0)
#define endl "\n"
int t, cs = 0;
const int mxn = 5e3 + 3, mod = 1e9 + 7;
int vis[mxn][mxn], dp[mxn][mxn];
int n, k;
string s;
int cost(int ch, int tar)
{
    if(ch <= tar)return tar - ch;
    else return 25 - ch + tar + 1;

}
int rec(int i, int cnt)
{
    if(!cnt)return 0;
    if(i >= n - 2)return 1e9;
    if(vis[i][cnt] == cs)return dp[i][cnt];
    vis[i][cnt] = cs;
    int ans = 1e9;
    int a = cost(s[i] - 'a', 0), b = cost(s[i + 1] - 'a', 1), c = cost(s[i + 2] - 'a', 2);
    ans = min(ans, a + b + c + rec(i + 3, cnt - 1));
    ans = min(ans, rec(i + 1, cnt));
    return dp[i][cnt] = ans;
}
int32_t main()
{
    fast;
    w(t)
    {
        cin >> n >> k;
        cin >> s;++cs;
        int low = 1, high = n / 3;
        while(low <= high)
        {
            int mid = low + high >> 1;

            int cost = rec(0, mid);

            if(cost <= k)low = mid + 1;
            else high = mid - 1;
        }
        cout << --low << endl;
    }

}

Information

Submit By
Type
Submission
Problem
P1100 Substring ABC
Language
C++17 (G++ 13.2.0)
Submit At
2024-11-13 19:35:57
Judged At
2024-11-13 19:35:57
Judged By
Score
100
Total Time
368ms
Peak Memory
142.828 MiB