CF#230 B题 Three matrices

来源:互联网 发布:广联达软件包含哪些 编辑:程序博客网 时间:2024/04/29 16:14

Chubby Yang is studying linear equations right now. He came up with a nice problem. In the problem you are given an n × n matrix W, consisting of integers, and you should find two n × n matrices A and B, all the following conditions must hold:

  • Aij = Aji, for all i, j (1 ≤ i, j ≤ n);
  • Bij =  - Bji, for all i, j (1 ≤ i, j ≤ n);
  • Wij = Aij + Bij, for all i, j (1 ≤ i, j ≤ n).

Can you solve the problem?

Input

The first line contains an integer n (1 ≤ n ≤ 170). Each of the following n lines contains n integers. The j-th integer in the i-th line is Wij(0 ≤ |Wij| < 1717).

Output

The first n lines must contain matrix A. The next n lines must contain matrix B. Print the matrices in the format equal to format of matrix Win input. It is guaranteed that the answer exists. If there are multiple answers, you are allowed to print any of them.

The answer will be considered correct if the absolute or relative error doesn't exceed 10 - 4.

Sample test(s)
input
21 43 2
output
1.00000000 3.500000003.50000000 2.000000000.00000000 0.50000000-0.50000000 0.00000000
input
31 2 34 5 67 8 9
output
1.00000000 3.00000000 5.000000003.00000000 5.00000000 7.000000005.00000000 7.00000000 9.000000000.00000000 -1.00000000 -2.000000001.00000000 0.00000000 -1.000000002.00000000 1.00000000 0.00000000
#include <stdio.h>#include <string.h>double a[180][180], b[180][180];int c[180][180];int main(){    int n, i, j;    scanf("%d",&n);    for(i=0; i<n; i++)    {        for(j=0; j<n; j++)        {            scanf("%d",&c[i][j]);            if(i==j)            {                b[i][j]=0;                a[i][j]=c[i][j]-b[i][j];            }        }    }    for(i=0; i<n; i++)    {        for(j=0; j<n; j++)        {            b[i][j]=(c[i][j]-c[j][i])*1.0/2;            b[j][i]=-b[i][j];            a[i][j]=c[i][j]-b[i][j];            a[j][i]=c[i][j]-b[i][j];        }    }    for(i=0;i<n;i++)    {        for(j=0;j<n;j++)        {            if(j==n-1)                printf("%.6lf\n",a[i][j]);            else                printf("%.6lf ",a[i][j]);        }    }    for(i=0;i<n;i++)    {        for(j=0;j<n;j++)        {            if(j==n-1)                printf("%.6lf\n",b[i][j]);            else                printf("%.6lf ",b[i][j]);        }    }    return 0;}


0 0