Optimal Array Multiplication Sequence - UVa 348 dp

本文探讨了在矩阵乘法中如何通过优化计算序列来减少乘法操作的数量,包括两个矩阵相乘的基本原理,以及如何在多矩阵相乘时选择最佳顺序以减少计算量。通过动态规划方法解决此问题,并提供了求解过程的详细步骤和示例。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

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 Ais a tex2html_wrap_inline67 array, and B 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_inline103array, Y is a tex2html_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), a tex2html_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), a tex2html_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 N pairs 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

3
1 5
5 20
20 1
3
5 10
10 20
20 35
6
30 35
35 15
15 5
5 10
10 20
20 25
0

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))

题意:矩阵相乘的时候会做一些运算,问怎么运算能使运算次数最少。

思路:dp[i][j]表示第i个到第j个相乘的最少次数,然后就递推。

AC代码如下:

#include<cstdio>
#include<cstring>
#include<algorithm>
using namespace std;
struct node
{ int n,m;
}mat[15];
int n;
int dp[15][15];
void dfs(int l,int r)
{ int i,j;
  if(l==r)
  { printf("A%d",l);
    return;
  }
  if(l+1==r)
  { printf("(A%d x A%d)",l,r);
    return;
  }
  for(i=l;i<r;i++)
   if(dp[l][i]+dp[i+1][r]+mat[l].n*mat[i].m*mat[r].m==dp[l][r])
    break;
  printf("(");
  dfs(l,i);
  printf(" x ");
  dfs(i+1,r);
  printf(")");
}
int main()
{ int t=0,i,j,k;
  while(~scanf("%d",&n) && n)
  { for(i=1;i<=n;i++)
    { scanf("%d%d",&mat[i].n,&mat[i].m);
      dp[i][i]=0;
    }
    for(i=n;i>=1;i--)
     for(j=i+1;j<=n;j++)
     { dp[i][j]=1000000000;
       for(k=i;k<j;k++)
       dp[i][j]=min(dp[i][j],dp[i][k]+dp[k+1][j]+mat[i].n*mat[k].m*mat[j].m);
     }
    printf("Case %d: ",++t);
    dfs(1,n);
    printf("\n");
  }
}



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值