CodeForces 358D — Dima and Hares

本文介绍了一道Codeforces题目CF358D的解题思路与实现过程,使用了动态规划方法来解决简单的偏序关系问题。通过备忘录优化避免重复计算,实现了高效求解。

这题要备忘一下,对于简单的偏序关系对应的价值也可以施行dp。

 

/*
ID:esxgx1
LANG:C++
PROG:cf358D
*/
#include <cstdio>
#include <cstring>
#include <iostream>
#include <algorithm>
using namespace std;

const int maxn = 3007;
unsigned joy[maxn][3];
unsigned dp[2][2];

int main(void)
{
    #ifndef ONLINE_JUDGE
    freopen("in.txt", "r", stdin);
    #endif

    int N;
    scanf("%d", &N);
    for(int i=0; i<N; ++i) scanf("%u", &joy[i][0]);
    for(int i=0; i<N; ++i) scanf("%u", &joy[i][1]);
    for(int i=0; i<N; ++i) scanf("%u", &joy[i][2]);
    
    int curr = 0;
    dp[0][0] = joy[0][0], dp[0][1] = joy[0][1];
    for(int i=2; i<=N; ++i) {
        // 所处位置是c, 当前要决定b, 若b<c,即 a < b < c(1), b < a < c(0), b < c < a(0)
        dp[!curr][0] = max(dp[curr][0] + joy[i-1][1], dp[curr][1] + joy[i-1][0]);
        // 若 c < b, 即 c < a < b, a < c < b(2),  c < b < a (1)
        dp[!curr][1] = max(dp[curr][0] + joy[i-1][2], dp[curr][1] + joy[i-1][1]);
        curr = !curr;
    }    
    printf("%u\n", dp[curr][0]);
    return 0;
}

 

转载于:https://www.cnblogs.com/e0e1e/p/cf_358d.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值