/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 324.0 KiB
#2 Wrong Answer 72ms 656.0 KiB
#3 Wrong Answer 53ms 576.0 KiB

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(5, vector<vector<ll>> (5, 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 <= 4; 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 19:16:29
Judged At
2024-11-11 02:55:43
Judged By
Score
5
Total Time
72ms
Peak Memory
656.0 KiB