码迷,mamicode.com
首页 > 其他好文 > 详细

【区间dp】P1063 能量项链

时间:2019-05-22 09:26:51      阅读:74      评论:0      收藏:0      [点我收藏+]

标签:new   ref   ring   需要   ||   https   sign   pre   lin   

一道区间dp的水题

题目链接

来快活啊!

思路

很简单的区间dp,思路和floyed差不多,就是需要把项链处理成环形

代码

#include<iostream>
#include<cstdio>
#include<algorithm>
#include<cmath>
#include<queue>
#include<stack>
#include<vector>
#include<map>
#include<string>
#include<cstring>

using namespace std;
inline int read() {
    char c = getchar();
    int x = 0, f = 1;
    while(c < '0' || c > '9') {
        if(c == '-') f = -1;
        c = getchar();
    }
    while(c >= '0' && c <= '9') x = x * 10 + c - '0', c = getchar();
    return x * f;
}
int ans;
int f[1001][1001],n,a[10010];
signed main() {
    cin>>n;
    for(int i=1; i<=n; ++i) {
        cin>>a[i];
        a[n+i]=a[i];/*处理成环*/
    }
    for(int i=2; i<=n+1; ++i) {
        for(int l=1; l+i-1<=2*n/*注意应为2*n,因为上面处理成环了*/; ++l) {
            int r=l+i-1;
            for(int k=l+1; k<=l+i-2; ++k) {
                f[l][r]=max(f[l][r],f[l][k]+f[k][r]+a[l]*a[k]*a[r]);
            }
        }
    }
    for(int i=1; i<=n; ++i) {
        ans=max(ans,f[i][n+i]);
    }
    cout<<ans;
    return 0;
}

【区间dp】P1063 能量项链

标签:new   ref   ring   需要   ||   https   sign   pre   lin   

原文地址:https://www.cnblogs.com/pyyyyyy/p/10903820.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!