/ SeriousOJ /

Record Detail

Time Exceeded


  
# Status Time Cost Memory Cost
#1 Accepted 2ms 540.0 KiB
#2 Accepted 16ms 572.0 KiB
#3 Accepted 770ms 580.0 KiB
#4 Accepted 866ms 836.0 KiB
#5 Time Exceeded ≥1601ms ≥17.723 MiB
#6 Time Exceeded ≥1601ms ≥17.578 MiB

Code

#ifndef LOCAL
#include <bits/stdc++.h>
#define debug(...)
#endif

using namespace std;
#define int long long
#define cinv(v) for (auto &it:v) cin>>it;
#define coutv(v) for (auto &it:v) cout<< it<<' '; cout<<'\n';

map<char,int> mp{
    {'a', 0},
    {'e', 1},
    {'i', 2},
    {'o', 3},
    {'u', 4}
};

const int INF = 1e8;

void shelby() {
    int n;
    string s;
    cin >> n >> s;
    vector<int> v(n), cnt(5);
    for (int i = 0; i < n; ++i) {
        v[i] = mp[s[i]];
        cnt[v[i]]++;
    }
    vector<int> perm(5);
    iota(perm.begin(), perm.end(), 0LL);
    int ans = LLONG_MAX;
    auto calc = [&](int a, int b)-> int {
        if (a < b) a += 5;
        return a - b;
    };
    do {
        int now = 0;
        vector<vector<int> > pref(5, vector<int>(n, INF));
        for (int i = 0; i < 5; ++i) {
            for (int j = 0; j < n; ++j) {
                pref[i][j] = calc(perm[i], v[j]);
            }
        }
        vector<vector<int> > memo(5, vector<int>(n, -1));
        auto dp = [&](auto &&self, int i, int j)-> int {
            if (j == n) return 0;
            if (i == 5) return INF;
            int &ret = memo[i][j];
            if (~ret) return ret;
            ret = INF;
            ret = min(ret, pref[i][j] + min(self(self, i, j + 1), self(self, i + 1, j + 1)));
            ret = min(ret, self(self, i + 1, j));
            return ret;
        };
        debug(perm, pref);
        ans = min(ans, dp(dp, 0, 0));
        debug(ans);
    } while (next_permutation(perm.begin(), perm.end()));
    cout << ans << '\n';
}

signed main() {
    cin.tie(0)->sync_with_stdio(0);
    int t = 1;
    cin >> t;
    for (int _ = 1; _ <= t; ++_) {
        // cout << "Case " << _ << ": ";
        shelby();
    }
}

Information

Submit By
Type
Submission
Problem
P1140 Vowel arrangement
Language
C++17 (G++ 13.2.0)
Submit At
2025-01-26 13:21:19
Judged At
2025-01-26 13:21:19
Judged By
Score
10
Total Time
≥1601ms
Peak Memory
≥17.723 MiB