/ SeriousOJ /

Record Detail

Accepted


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 532.0 KiB
#2 Accepted 90ms 576.0 KiB
#3 Accepted 77ms 640.0 KiB
#4 Accepted 72ms 1.27 MiB
#5 Accepted 102ms 8.422 MiB
#6 Accepted 146ms 69.066 MiB
#7 Accepted 168ms 68.973 MiB
#8 Accepted 142ms 68.902 MiB
#9 Accepted 165ms 68.871 MiB
#10 Accepted 164ms 68.863 MiB
#11 Accepted 164ms 68.996 MiB
#12 Accepted 138ms 69.062 MiB
#13 Accepted 167ms 68.809 MiB
#14 Accepted 136ms 68.855 MiB
#15 Accepted 137ms 68.855 MiB
#16 Accepted 135ms 69.062 MiB
#17 Accepted 48ms 21.527 MiB
#18 Accepted 22ms 3.844 MiB
#19 Accepted 26ms 4.398 MiB
#20 Accepted 145ms 69.051 MiB

Code

#include<bits/stdc++.h>
#define endl        '\n'
#define F           first
#define S           second
#define pb          push_back
#define yes         cout<<"YES\n"
#define no          cout<<"NO\n"
#define all(x)      x.begin(),x.end()
#define allr(x)     x.rbegin(),x.rend()
#define error1(x)   cerr<<#x<<" = "<<(x)<<endl
#define error2(a,b) cerr<<"("<<#a<<", "<<#b<<") = ("<<(a)<<", "<<(b)<<")\n";
#define coutall(v)  for(auto &it: v) cout << it << " "; cout << endl;
using namespace std;
using ll = long long;
using ld = long double;

void solve() {
    ll n, ans = LLONG_MAX;
    cin >> n;
    vector<ll> v(n);
    for (int i = 0; i < n; i++) {
        ll x; cin >> x;
        v[i] = x;
    }
    
    vector<vector<vector<ll>>> dp(6, vector<vector<ll>> (6, vector<ll> (n, -1)));

    auto rec = [&](auto&& self, int i, int back1, int back2) -> ll {
        if(i >= n) return 0;
        ll &ans = dp[back1][back2][i];
        if(ans != -1) return ans;
        ans = LLONG_MAX;
        for(int time = 1; time <= 5; time++) {
            if(back1 == time or back2 == time) continue;
            ans = min(ans, (v[i] * (time - 1)) + self(self, i + 1, time, back1));
        }
        return ans;
    };

    cout << rec(rec, 0, 0, 0) << endl;
    return;
}

signed main() {
    ios::sync_with_stdio(false); cin.tie(0);
    int tc = 1;
    cin >> tc;
    for (int t = 1; t <= tc; t++) {
        // cout << "Case " << t << ": ";
        solve();
    }
    return 0;
}

Information

Submit By
Type
Submission
Problem
P1087 Face the monsters
Language
C++20 (G++ 13.2.0)
Submit At
2024-09-06 18:49:22
Judged At
2024-09-06 18:49:22
Judged By
Score
100
Total Time
168ms
Peak Memory
69.066 MiB