/ SeriousOJ /

Record Detail

System Error


  
# Status Time Cost Memory Cost
#1 Accepted 4ms 3.555 MiB
#2 Accepted 4ms 3.414 MiB
#3 Accepted 3ms 3.527 MiB
#4 Accepted 3ms 3.484 MiB
#5 Accepted 50ms 3.688 MiB
#6 System Error 36ms 11.602 MiB
#7 System Error 36ms 11.605 MiB
#8 System Error 36ms 11.605 MiB
#9 System Error 34ms 11.609 MiB
#10 System Error 34ms 11.605 MiB
#11 System Error 34ms 11.613 MiB
#12 System Error 35ms 11.609 MiB
#13 System Error 34ms 11.613 MiB
#14 System Error 35ms 11.602 MiB
#15 System Error 34ms 11.598 MiB
#16 System Error 34ms 11.602 MiB

Code

#include <bits/stdc++.h>
#define endl '\n'
using namespace std;
#define ll long long
#define mod 1000000007
// #define int long long
#define all(x)      x.begin(),x.end()
#define allr(x)     x.rbegin(),x.rend()
#define CheckBit(x,k)   (x & (1LL << k))
#define SetBit(x,k)     (x |= (1LL << k))
#define ClearBit(x,k)   (x &= ~(1LL << k))
#define LSB(mask)       __builtin_ctzll(mask)
#define MSB(mask)       63-__builtin_clzll(mask) 
#define print(x)    cout << #x << " : " << x << endl
#define error1(x)   cerr << #x << " = " << (x) <<endl
#define coutall(v)  for(auto &it: v) cout<<it<<' '; cout<<endl
#define Abid_52     ios::sync_with_stdio(false);cin.tie(0),cin.tie(0)
#define error2(a,b) cerr<<"( "<<#a<<" , "<<#b<<" ) = ( "<<(a)<<" , "<<(b)<<" )\n"
#define UNIQUE(x)   sort(all(x)), x.erase(unique(all(x)), x.end()), x.shrink_to_fit()
template <typename T, typename U> T ceil(T x, U y) {return (x > 0 ? (x + y - 1) / y : x / y);}
template <typename T, typename U> T floor(T x, U y) {return (x > 0 ? x / y : (x - y + 1) / y);}
const int N = 1e5 + 10;
int n;
vector<int> a(N), b(N), c(N);
int dp[N][5];
int rec(int i, int prev)
{
    if (i >= n)
    {
        return 0;
    }
    if (dp[i][prev] != -1 && prev != -1)
    {
        return dp[i][prev];
    }
    int ans = INT_MIN;
    if (prev == -1)
    {
        ans = a[i] + rec(i + 1, 1);
        ans = max(ans, b[i] + rec(i + 1, 2));
        ans = max(ans, c[i] + rec(i + 1, 3));
    }
    else
    {
        if (prev == 1)
        {
            ans = max(ans, b[i] + rec(i + 1, 2));
            ans = max(ans, c[i] + rec(i + 1, 3));
        }
        else if (prev == 2)
        {
            ans = max(ans, a[i] + rec(i + 1, 1));
            ans = max(ans, c[i] + rec(i + 1, 3));
        }
        else
        {
            ans = max(ans, a[i] + rec(i + 1, 1));
            ans = max(ans, b[i] + rec(i + 1, 2));
        }
    }
    return dp[i][prev] = ans;
}
void solve()
{
    for (int i = 0; i < N; i++)
    {
        for (int j = 0; j < 5; j++)
        {
            dp[i][j] = -1;
        }
    }
    cin >> n;
    for (int i = 0; i < n; i++)
    {
        cin >> a[i];
    }
    for (int i = 0; i < n; i++)
    {
        cin >> b[i];
    }
    for (int i = 0; i < n; i++)
    {
        cin >> c[i];
    }
    cout << rec(0, -1) << endl;
}
int32_t main()
{
    Abid_52;
    int t = 1;
    cin >> t;
    for (int tc = 1; tc <= t; ++tc)
    {
        // cout << "Case " << tc << ": ";
        solve();
    }
}

Information

Submit By
Type
Submission
Problem
P1046 Maximum sum in 3-array
Language
C++20 (G++ 13.2.0)
Submit At
2024-03-28 10:14:17
Judged At
2024-03-28 10:14:17
Judged By
Score
20
Total Time
50ms
Peak Memory
11.613 MiB