小白dp 348 Optimal Array Multiplication Sequence

来源:互联网 发布:javascript源码下载 编辑:程序博客网 时间:2024/06/07 14:41

 Optimal Array Multiplication Sequence

Given two arrays A and B, we can determine the array C = A B using the standard definition of matrix multiplication:

The number of columns in the A array must be the same as the number of rows in the B array. Notationally, let's say that rows(A) and columns(A) are the number of rows and columns, respectively, in the A array. The number of individual multiplications required to compute the entire C array (which will have the same number of rows as A and the same number of columns as B) is then rows(Acolumns(Bcolumns(A). For example, if A is a tex2html_wrap_inline67 array, andB is a tex2html_wrap_inline71 array, it will take tex2html_wrap_inline73 , or 3000 multiplications to compute the C array.

To perform multiplication of more than two arrays we have a choice of how to proceed. For example, if XY, and Z are arrays, then to compute X Y Z we could either compute (X YZ or X (Y Z). Suppose X is a tex2html_wrap_inline103 array, Y is atex2html_wrap_inline67 array, and Z is a tex2html_wrap_inline111 array. Let's look at the number of multiplications required to compute the product using the two different sequences:

(X YZ

  • tex2html_wrap_inline119 multiplications to determine the product (X Y), atex2html_wrap_inline123 array.
  • Then tex2html_wrap_inline125 multiplications to determine the final result.
  • Total multiplications: 4500.

X (Y Z)

  • tex2html_wrap_inline133 multiplications to determine the product (Y Z), atex2html_wrap_inline139 array.
  • Then tex2html_wrap_inline141 multiplications to determine the final result.
  • Total multiplications: 8750.

Clearly we'll be able to compute (X YZ using fewer individual multiplications.

Given the size of each array in a sequence of arrays to be multiplied, you are to determine an optimal computational sequence. Optimality, for this problem, is relative to the number of individual multiplications required.

Input

For each array in the multiple sequences of arrays to be multiplied you will be given only the dimensions of the array. Each sequence will consist of an integer N which indicates the number of arrays to be multiplied, and then Npairs of integers, each pair giving the number of rows and columns in an array; the order in which the dimensions are given is the same as the order in which the arrays are to be multiplied. A value of zero for N indicates the end of the input. N will be no larger than 10.

Output

Assume the arrays are named tex2html_wrap_inline157 . Your output for each input case is to be a line containing a parenthesized expression clearly indicating the order in which the arrays are to be multiplied. Prefix the output for each case with the case number (they are sequentially numbered, starting with 1). Your output should strongly resemble that shown in the samples shown below. If, by chance, there are multiple correct sequences, any of these will be accepted as a valid answer.

Sample Input

31 55 2020 135 1010 2020 35630 3535 1515 55 1010 2020 250

Sample Output


Case 1: (A1 x (A2 x A3))Case 2: ((A1 x A2) x A3)Case 3: ((A1 x (A2 x A3)) x ((A4 x A5) x A6))


题意:
给你n个矩阵,使用结合律让这个式子所计算的乘法次数最少,A1*A2*A3*...*An。输出加括号后的式子。

思路:
构造二维dp,dp[i][j]-表示 i 到 j 相乘的最小运算次数,那么有
dp[i][j]=min(dp[i][j],dp[i][k]+dp[k+1][j]+le[i]*ri[k]*ri[j]);
用记忆化搜索实现,可以记录dp[i][j]选的哪个k,就能递归实现输出了。

代码:
#include <iostream>#include <cstdio>#include <cstring>#include <algorithm>#include <cmath>#include <string>#include <map>#include <stack>#include <vector>#include <set>#include <queue>//#pragma comment (linker,"/STACK:102400000,102400000")#define maxn 15#define MAXN 50005#define mod 1000000007#define INF 0x3f3f3f3f#define OO (1LL<<50)using namespace std;typedef long long ll;ll n,m,ans,cnt,flag,sum;ll dp[maxn][maxn],pre[maxn][maxn];ll le[maxn],ri[maxn];ll dfs(ll a,ll b){    if(dp[a][b]!=-1) return dp[a][b];    if(a==b) return 0;    ll i,j,t,k,best=OO;    for(i=a;i<b;i++)    {        t=dfs(a,i)+dfs(i+1,b)+le[a]*ri[i]*ri[b];        if(best>t)        {            best=t;            k=i;        }    }    dp[a][b]=best;    pre[a][b]=k;    return dp[a][b];}void output(ll a,ll b){    if(a==b)    {        printf("A%lld",a);        return ;    }    printf("(");    output(a,pre[a][b]);    printf(" x ");    output(pre[a][b]+1,b);    printf(")");}int main(){    ll i,j,t,test=0;    while(scanf("%lld",&n),n)    {        for(i=1;i<=n;i++)        {            scanf("%lld%lld",&le[i],&ri[i]);        }        for(i=1;i<=n;i++)        {            for(j=1;j<=n;j++)            {                dp[i][j]=-1;            }        }        dfs(1,n);        printf("Case %lld: ",++test);//        printf("%lld\b",dp[1][n]);        output(1,n);        printf("\n");    }    return 0;}/*630 3535 1515 55 1010 2020 25Case 3: ((A1 x (A2 x A3)) x ((A4 x A5) x A6))*/





0 0
原创粉丝点击