zoukankan      html  css  js  c++  java
  • SPOJ MIXTURES 区间dp

    Harry Potter has n mixtures in front of him, arranged in a row. Each mixture has one of 100 different colors (colors have numbers from 0 to 99).

    He wants to mix all these mixtures together. At each step, he is going to take two mixtures that stand next to each other and mix them together, and put the resulting mixture in their place.

    When mixing two mixtures of colors a and b, the resulting mixture will have the color (a+b) mod 100.

    Also, there will be some smoke in the process. The amount of smoke generated when mixing two mixtures of colors a and b is a*b.

    Find out what is the minimum amount of smoke that Harry can get when mixing all the mixtures together.

    Input

    There will be a number of test cases in the input.

    The first line of each test case will contain n, the number of mixtures, 1 <= n <= 100.

    The second line will contain n integers between 0 and 99 - the initial colors of the mixtures.

    Output

    For each test case, output the minimum amount of smoke.

    Example

    Input:
    2
    18 19
    3
    40 60 20
    
    Output:
    342
    2400
    

    In the second test case, there are two possibilities:

    • first mix 40 and 60 (smoke: 2400), getting 0, then mix 0 and 20 (smoke: 0); total amount of smoke is 2400
    • first mix 60 and 20 (smoke: 1200), getting 80, then mix 40 and 80 (smoke: 3200); total amount of smoke is 4400

    The first scenario is a much better way to proceed.

    题解

    这是一道傻逼区间dp,就没啥难度,预处理一下区间和即可

    详见代码:

    #include<iostream>
    #include<cstring>
    #include<algorithm>
    #define MAX_N 105
    #define INF 0x3f3f3f3f
    using namespace std;
    
    int dp[MAX_N][MAX_N];
    int sum[MAX_N];
    
    int n;
    int a[MAX_N];
    
    int main() {
        cin.sync_with_stdio(false);
        while (cin >> n) {
            for (int i = 0; i <= n; i++)
                for (int j = 0; j <= n; j++)
                    dp[i][j] = INF;
            memset(sum, 0, sizeof(sum));
            for (int i = 1; i <= n; i++) {
                cin >> a[i];
                dp[i][i] = 0;
                sum[i] = sum[i - 1] + a[i];
            }
            for (int i = 1; i <= n; i++)
                for (int j = 1; j + i <= n; j++)
                    for (int k = j; k < j + i; k++)
                        dp[j][j + i] = min(dp[j][j + i], dp[j][k] + dp[k + 1][j + i] +
                                                                    ((sum[k] - sum[j - 1]) % 100) *
                                                                    ((sum[j + i] - sum[k]) % 100));
            cout << dp[1][n] << endl;
        }
        return 0;
    }
    

      

  • 相关阅读:
    LeetCode111 二叉树的最小深度
    LeetCode104 二叉树的最大深度
    LeetCode102 二叉树的层次遍历
    LeetCode94 二叉树的中序遍历
    LeetCode145 二叉树的后序遍历
    LeetCode144 二叉树的前序遍历
    计算机考研真题 最大序列和
    计算机考研真题 对称矩阵
    计算机考研真题 点菜问题
    计算机考研真题 数字反转
  • 原文地址:https://www.cnblogs.com/HarryGuo2012/p/4712159.html
Copyright © 2011-2022 走看看