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

loj10151. 「一本通 5.1 练习 2」分离与合体

时间:2018-08-16 19:50:41      阅读:274      评论:0      收藏:0      [点我收藏+]

标签:层序遍历   getch   pos   make   second   pair   style   cout   namespace   

思路:
  注意初始化dp[i][i]=0,输出顺序时层序遍历。

#include<cstdio>
#include<iostream>
#include<string>
#include<queue>
using namespace std;
const int maxn = 310;
void qread(int &x){
    x = 0;
    register int ch = getchar();
    if(ch < 0 || ch > 9)    ch = getchar();
    while(ch >= 0 && ch <= 9)    x = 10 * x + ch - 48, ch = getchar();
}
int data[maxn];
int n;
int dp[maxn][maxn];
int sum[maxn];
int pos[maxn][maxn];
queue<pair<int, int> > qu;
void show(int l, int r){
    if(l == r)
        return ;
    cout << pos[l][r] << " ";
    qu.push(make_pair(l, pos[l][r]));
    qu.push(make_pair(pos[l][r] + 1, r));
    while(!qu.empty()){
        int a = qu.front().first, b = qu.front().second;
        qu.pop();
        show(a, b);
    }
}
int main(void){
    qread(n);
    for(int i = 1; i<=n; ++i){
        qread(data[i]);
        dp[i][i] = 0;
        sum[i] = sum[i-1] + data[i];
    }
    for(int L = 1; L < n; ++L)
        for(int i = 1; i + L <= n; ++i){
            int j = i + L;
            dp[i][j] = 0;
            for(int k = i; k < j; ++k){
                int t = dp[i][k] + dp[k + 1][j] + (data[i] + data[j]) * data[k];
                if(t > dp[i][j]){
                    dp[i][j] = t;
                    pos[i][j] = k;
                }
            }
        }
    printf("%d\n", dp[1][n]);
    show(1, n);            
}

 

loj10151. 「一本通 5.1 练习 2」分离与合体

标签:层序遍历   getch   pos   make   second   pair   style   cout   namespace   

原文地址:https://www.cnblogs.com/junk-yao-blog/p/9488826.html

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