/ SeriousOJ /

Record Detail

Accepted


  
# Status Time Cost Memory Cost
#1 Accepted 2ms 540.0 KiB
#2 Accepted 20ms 608.0 KiB
#3 Accepted 593ms 600.0 KiB
#4 Accepted 1080ms 796.0 KiB
#5 Accepted 1247ms 190.801 MiB
#6 Accepted 1250ms 190.914 MiB
#7 Accepted 1267ms 95.77 MiB
#8 Accepted 1240ms 19.605 MiB
#9 Accepted 1047ms 608.0 KiB
#10 Accepted 555ms 784.0 KiB
#11 Accepted 1261ms 190.84 MiB
#12 Accepted 1257ms 190.852 MiB
#13 Accepted 1000ms 190.746 MiB

Code

#include<bits/stdc++.h>
using namespace std;

// #define int long long
#define endl "\n"
#define F first
#define S second
#define pii pair<int, int>
#define sz(x) (int) (x.size())


// #include<ext/pb_ds/assoc_container.hpp>
// #include<ext/pb_ds/tree_policy.hpp>
// using namespace __gnu_pbds;

// template<typename T> using o_set = tree<T, null_type, std::less<T>, 
// rb_tree_tag, tree_order_statistics_node_update>;

string tmp = "aeiou";
map<char, int> mp;


const int N = 2e5 + 10;
const int mod = 1e9 + 7;
const int INF = 1e9 + 10;


void solve() {
    int n; cin>>n;
    string s; cin>>s;
    mp['a'] = 0;
    mp['e'] = 1;
    mp['i'] = 2;
    mp['o'] = 3;
    mp['u'] = 4;
    vector<vector<vector<int>>> dp(n + 1, vector<vector<int>>(35, vector<int>(6, INF)));

    for(int i = 0; i < 32; i++) for(int j = 0; j <= 5; j++) dp[n][i][j] = 0;

    for(int ind = n - 1; ind >= 0; ind--) {
        for(int mask = 0; mask < 32; mask++) {
            for(int prv = 0; prv < 5; prv++) {
                for(int op = 0; op <= 4; op++) {
                    int cur = (mp[s[ind]] + op) % 5;
                    if((cur != prv) && (mask & (1LL << cur))) continue;
                    dp[ind][mask][prv] = min(dp[ind][mask][prv], op + dp[ind + 1][mask | (1LL << cur)][cur]);
                }
            }
        }
    }

    cout<<dp[0][0][4]<<endl;
}

signed main() {
    ios_base::sync_with_stdio(false);
    cin.tie(NULL);

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

Information

Submit By
Type
Submission
Problem
P1140 Vowel arrangement
Language
C++17 (G++ 13.2.0)
Submit At
2024-12-24 21:54:04
Judged At
2024-12-24 21:54:04
Judged By
Score
100
Total Time
1267ms
Peak Memory
190.914 MiB