CSU1561 (More) Multiplication

来源:互联网 发布:linux 卸载 工具 编辑:程序博客网 时间:2024/06/05 15:33

 (More) Multiplication

Description

Educators are always coming up with new ways to teach math to students. In 2011, an educational software company, All Computer Math (ACM), developed an application to display products in a traditional grade school math format. ACM is now working on an updated version of the software that will display results in a lattice format that some students find to be easier when multiplying larger numbers.

An example would be when multiplying 345 * 56 = 19320 as given below, using a lattice grid with 2 rows and 3 columns, which appears inside a surrounding frame:

+---------------+
|   3   4   5   |
| +---+---+---+ |
| |1 /|2 /|2 /| |
| | / | / | / |5|
|1|/ 5|/ 0|/ 5| |
| +---+---+---+ |
|/|1 /|2 /|3 /| |
| | / | / | / |6|
|9|/ 8|/ 4|/ 0| |
| +---+---+---+ |
|/ 3 / 2 / 0    |
+---------------+
The first operand, 345, is displayed above the top of the grid with each digit centered horizontally above its column of the grid, and the second operand, 56, is displayed along the righthand side with each digit centered vertically at the center of its row in the grid. A single cell of the grid, such as
+---+
|3 /|
| / |
|/ 0|
+---+
represents the product of the digit of the first operand that is above its column and the digit of the second operand that is to the right of its row. In our example, this cell represents the product 5 times 6 = 30 that results when multiplying the 5 in 345 and the 6 in 56. Note that the 10's digit of that product is placed in the upper left portion of this cell and the 1's digit in the lower right.

The overall product is then computed by summing along the diagonals in the lattice that represent the same place values in the result. For example, in our first problem the product 19320 was computed as:

1's digit
= 0
10's digit
= 5 + 3 + 4 = 12, thus 2 with a carry of 1
100's digit
= (1 carry) + 2 + 0 + 2 + 8 = 13, thus 3 with a carry of 1
1000's digit
= (1 carry) + 2 + 5 + 1 = 9
10000's digit
= 1
The resulting product is placed with the one's digit below the grid at the far right and, depending on its length, with the most significant digits wrapped around the left side of the grid. Each digit of the final product appears perfectly aligned with the corresponding diagonal summands.
To provide an aesthetic view, we use a series of minus (-) characters for horizontal lines, pipe (|) characters for vertical lines, and slash (/) characters for diagonal lines. Furthermore, we use a plus (+) character wherever a horizontal and vertical line meet. Each multiplication lattice is subsequently "boxed" by an outer border. There is a row containing the first operand which is between the topmost border and the top line of the grid, and a row between the bottom of the grid and the bottom border, which contains some portion of the resulting product. There is one column between the leading | and the left edge of the inner grid, which may contain a portion of the resulting product, and one column after the right edge of the inner grid but before the rightmost | border, which contains the second operand. If the product is not long enough to wrap around the bottom-left corner, the column between the left border and the left edge of the grid will containing only spaces. (See the later example of 3 x 3.)

Leading zeros should be displayed within lattice grid cells, but leading zeros should never be displayed in the product, nor should there ever be a slash (/) character prior to the leading digit of the product. For example, consider the product of 12 * 27 = 324 below:

+-----------+
|   1   2   |
| +---+---+ |
| |0 /|0 /| |
| | / | / |2|
| |/ 2|/ 4| |
| +---+---+ |
| |0 /|1 /| |
| | / | / |7|
|3|/ 7|/ 4| |
| +---+---+ |
|/ 2 / 4    |
+-----------+
Note that in the top-right grid of the lattice, the product 2 * 2 = 04 is displayed with the zero for the tens digit. However, there is no thousands digit displayed in the product 324, nor is there any slash displayed above the digit 3 in that product.

Input

 The input contains one or more tests. Each test contains two positive integers, A and B, such that 1 ≤ A ≤ 9999 and 1 ≤ B ≤ 9999. The last data set will be followed by a line containing 0 0.

Output

 For each data set, produce the grid that illustrates how to multiply the two numbers using the lattice multiplication technique.

Sample Input

345 5612 271 689999 73 30 0

Sample Output

+---------------+|   3   4   5   || +---+---+---+ || |1 /|2 /|2 /| || | / | / | / |5||1|/ 5|/ 0|/ 5| || +---+---+---+ ||/|1 /|2 /|3 /| || | / | / | / |6||9|/ 8|/ 4|/ 0| || +---+---+---+ ||/ 3 / 2 / 0    |+---------------++-----------+|   1   2   || +---+---+ || |0 /|0 /| || | / | / |2|| |/ 2|/ 4| || +---+---+ || |0 /|1 /| || | / | / |7||3|/ 7|/ 4| || +---+---+ ||/ 2 / 4    |+-----------++-------+|   1   || +---+ || |0 /| || | / |6|| |/ 6| || +---+ || |0 /| || | / |8||6|/ 8| || +---+ ||/ 8    |+-------++-------------------+|   9   9   9   9   || +---+---+---+---+ || |6 /|6 /|6 /|6 /| || | / | / | / | / |7||6|/ 3|/ 3|/ 3|/ 3| || +---+---+---+---+ ||/ 9 / 9 / 9 / 3    |+-------------------++-------+|   3   || +---+ || |0 /| || | / |3|| |/ 9| || +---+ ||  9    |+-------+

Hint

 The tables must be formatted precisely as outlined by the rules and examples provided. Mistakes that involve solely errant whitespace will be categorized as Presentation Error; all other errors will be reported as Wrong Answer.

——————————————————————————

题目的意思是模拟乘法 输出运算过程
思路:直接开数组记录,输出有点蛋疼
#include <iostream>#include <cstdio>#include <algorithm>#include <cmath>#include <cstring>#include <string>#include <queue>#include <stack>#include <set>#include <map>using namespace std;#define LL long longconst LL mod=1e9+7;const int INF=0x3f3f3f3f;#define MAXN 100005struct node{    int a,b;} mp[10][10];int xx[10],yy[10];int ax[10],ay[10];int main(){    int x,y;    while(~scanf("%d%d",&x,&y))    {        if(x==0&&y==0)            break;        int t1=0;        while(x>0)        {            xx[t1++]=x%10;            x/=10;        }        for(int i=0; i<t1/2; i++)            swap(xx[i],xx[t1-i-1]);        int t2=0;        while(y>0)        {            yy[t2++]=y%10;            y/=10;        }        for(int i=0; i<t2/2; i++)            swap(yy[i],yy[t2-i-1]);        for(int i=0; i<t2; i++)            for(int j=0; j<t1; j++)            {                mp[i][j].a=yy[i]*xx[j]/10;                mp[i][j].b=(yy[i]*xx[j])%10;            }//计算答案  傻逼了 去模拟 乘一乘就知道了        memset(ax,0,sizeof ax);        memset(ay,0,sizeof ay);        for(int i=t1-1; i>=0; i--)        {            int l=t2-1,c=i;            int fl=0;            while(l>=0&&c<t1)            {                if(fl==0)                {                    ax[i]+=mp[l][c].b;                    c++;                    fl=1;                }                else                {                    ax[i]+=mp[l][c].a;                    l--;                    fl=0;                }            }            while(ax[i]>9)            {                ax[i]-=10;                if(i>0)                    ax[i-1]+=1;                else                    ay[t2-1]+=1;            }        }        for(int i=t2-1; i>=0; i--)        {            int l=i,c=0;            int fl=0;            while(l>=0&&c<t1)            {                if(fl==0)                {                    ay[i]+=mp[l][c].a;                    l--;                    fl=1;                }                else                {                    ay[i]+=mp[l][c].b;                    c++;                    fl=0;                }            }            while(ay[i]>9)            {                ay[i]-=10;                ay[i-1]+=1;            }        }        printf("+--");        for(int i=0; i<t1; i++)            printf("----");        printf("-+\n");        printf("|   ");        for(int i=0; i<t1; i++)            printf("%d   ",xx[i]);        printf("|\n");        printf("| ");        for(int i=0; i<t1; i++)            printf("+---");        printf("+ |\n");        int fl=0;        for(int i=0; i<t2; i++)        {            if(fl==0)            printf("| ");            else             printf("|/");            for(int j=0; j<t1; j++)                printf("|%d /",mp[i][j].a);            printf("| |\n");            printf("| ");            for(int j=0; j<t1; j++)                printf("| / ");            printf("|%d|\n",yy[i]);            printf("|%c",ay[i]==0&&!fl?' ':'0'+ay[i]);            if(ay[i]>0)                fl=1;            for(int j=0; j<t1; j++)                printf("|/ %d",mp[i][j].b);            printf("| |\n");            printf("| ");            for(int i=0; i<t1; i++)                printf("+---");            printf("+ |\n");        }        printf("|");      if(fl)        printf("/ %c ",ax[0]==0&&!fl?' ':'0'+ax[0]);      else          printf("  %c ",ax[0]==0&&!fl?' ':'0'+ax[0]);            for(int i=1; i<t1; i++)            {                 printf("/ %c ",ax[i]==0&&!fl?' ':'0'+ax[i]);      if(ax[i]>0)        fl=1;            }            printf("   |\n");              printf("+--");        for(int i=0; i<t1; i++)            printf("----");        printf("-+\n");    }    return 0;}