• <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>

            dp_1_M

            最近開始刷奇奇神的dp專題,呃,我是弱菜,啥都不會,現在才開始刷dp,
            在nocLyt神的熏陶下,覺著區間dp有些感覺了
            不過還是調半天才調出來
            今天做的這個
            M - Optimal Array Multiplication Sequence
            Time Limit:3000MS     Memory Limit:0KB     64bit IO Format:%lld & %llu

            Description


             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(A) columns(B) columns(A). For example, if A is 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 X, Y, and Z are arrays, then to compute X Y Z we could either compute (X Y) Z or X (Y Z). Suppose X is a tex2html_wrap_inline103 array, 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 Y) Z

            • 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 Y) Z 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,就放在這了,

            #include<stdio.h>
            #include
            <string.h>
            #include
            <math.h>
            #define inf 0x7ffffff
            #define maxn 15
            int f[maxn][maxn],path[maxn][maxn];
            int l[maxn],r[maxn];
            int n;
            int min(int a,int b)
            {
                
            return a<b?a:b;
            }
            void print(int h,int t)
            {
                printf(
            "(");
                
            if (t-h==1)
                {
                    printf(
            "A%d x A%d",h,t);
                }
                
            else
                {
                    
            int tmp=path[h][t];
                    
            if(tmp-h==0)
                    {
                        printf(
            "A%d x ",h);
                         
            if(t-tmp-1==0) printf("A%d",t);else print(tmp+1,t);
                    }
                    
            else if(t-tmp==0)
                    {
                        
                        
            if(h-tmp-1==0) printf("A%d",h);else print(h,tmp-1);
                        printf(
            " x A%d",t);
                    }
                    
            else
                    {
                        
            if(h-tmp==0) printf("A%d",h);else print(h,tmp);
                        printf(
            " x ");
                        
            if(t-tmp-1==0) printf("A%d",t);else print(tmp+1,t);
                    }
                }
                printf(
            ")");
            }
            int main()
            {
                
            int i,j,k,times;
                times
            =0;
                
            while(scanf("%d",&n)!=EOF&&n!=0)
                {
                    times
            ++;
                    
            for(i=1; i<=n; i++) scanf("%d%d",&l[i],&r[i]);
                    memset(f,
            0,sizeof(f));
                    
            for(i=1; i<=n-1; i++)
                        f[i][i
            +1]=l[i]*r[i]*r[i+1];//,printf("%d %d %d\n",i,i+1,f[i][i+1]);
                    for(i=n-2; i>=1; i--)
                    {
                        
            for(j=i+2; j<=n; j++)
                        {
                            f[i][j]
            =inf;
                            
            for(k=i; k<=j; k++)
                                
            if(f[i][k]+f[k+1][j]+l[i]*r[k]*r[j]<f[i][j])
                                {
                                    
            //printf("%d %d %d %d %d %d\n",i,k,j,f[i][k],f[k+1][j],l[i]*r[k]*r[j]);
                                    f[i][j]=f[i][k]+f[k+1][j]+l[i]*r[k]*r[j];
                                    path[i][j]
            =k;
                                }
                            
            //printf("%d %d %d %d\n",i,j,f[i][j],path[i][j]);
                        }
                    }
                    
            //printf("%d\n",f[1][n]);
                    printf("Case %d: ",times);
                    print(
            1,n);
                    printf(
            "\n");
                }
                
            return 0;
            }

            呃,我是water,那個這個還可以用記憶化dp來實現,不過我沒寫過很好的記憶化搜索,干脆每次都寫的遞推實現
            不過效率還好……

            posted on 2012-06-02 12:25 jh818012 閱讀(130) 評論(0)  編輯 收藏 引用

            <2025年7月>
            293012345
            6789101112
            13141516171819
            20212223242526
            272829303112
            3456789

            導航

            統計

            常用鏈接

            留言簿

            文章檔案(85)

            搜索

            最新評論

            • 1.?re: poj1426
            • 我嚓,,輝哥,,居然搜到你的題解了
            • --season
            • 2.?re: poj3083
            • @王私江
              (8+i)&3 相當于是 取余3的意思 因為 3 的 二進制是 000011 和(8+i)
            • --游客
            • 3.?re: poj3414[未登錄]
            • @王私江
              0ms
            • --jh818012
            • 4.?re: poj3414
            • 200+行,跑了多少ms呢?我的130+行哦,你菜啦,哈哈。
            • --王私江
            • 5.?re: poj1426
            • 評論內容較長,點擊標題查看
            • --王私江
            精品久久久无码人妻中文字幕| 超级97碰碰碰碰久久久久最新| 国内精品人妻无码久久久影院| 久久久噜噜噜久久中文字幕色伊伊 | 久久精品国产欧美日韩| 久久无码一区二区三区少妇 | 久久婷婷五月综合色奶水99啪| 99久久99久久精品国产片果冻| 久久精品国产亚洲AV香蕉| 亚洲国产精品婷婷久久| 久久香综合精品久久伊人| 久久精品国内一区二区三区| 女人高潮久久久叫人喷水| 国产高潮国产高潮久久久| 久久国产影院| 九九久久99综合一区二区| 亚洲国产成人乱码精品女人久久久不卡 | 久久久久无码精品国产不卡| 久久99精品国产麻豆蜜芽| 久久综合综合久久综合| 久久国产V一级毛多内射| 久久国产热精品波多野结衣AV| 亚洲精品NV久久久久久久久久| 2022年国产精品久久久久| 一本一本久久A久久综合精品 | 精品视频久久久久| 久久精品中文无码资源站| 欧美午夜A∨大片久久 | 91久久婷婷国产综合精品青草| 久久久久久久91精品免费观看| 草草久久久无码国产专区| 国产成年无码久久久久毛片| 无码人妻久久一区二区三区| 久久精品国产亚洲av麻豆蜜芽 | 波多野结衣AV无码久久一区| 日本亚洲色大成网站WWW久久| 久久黄色视频| 亚洲国产精品无码久久青草| 国产精品久久久久久久app| 久久国产AVJUST麻豆| 亚洲中文久久精品无码|