• Little Elephant and Magic Square


    Little Elephant loves magic squares very much.

    A magic square is a 3 × 3 table, each cell contains some positive integer. At that the sums of integers in all rows, columns and diagonals of the table are equal. The figure below shows the magic square, the sum of integers in all its rows, columns and diagonals equals 15.

    The Little Elephant remembered one magic square. He started writing this square on a piece of paper, but as he wrote, he forgot all three elements of the main diagonal of the magic square. Fortunately, the Little Elephant clearly remembered that all elements of the magic square did not exceed 105.

    Help the Little Elephant, restore the original magic square, given the Elephant's notes.

    Input

    The first three lines of the input contain the Little Elephant's notes. The first line contains elements of the first row of the magic square. The second line contains the elements of the second row, the third line is for the third row. The main diagonal elements that have been forgotten by the Elephant are represented by zeroes.

    It is guaranteed that the notes contain exactly three zeroes and they are all located on the main diagonal. It is guaranteed that all positive numbers in the table do not exceed 105.

    Output

    Print three lines, in each line print three integers — the Little Elephant's magic square. If there are multiple magic squares, you are allowed to print any of them. Note that all numbers you print must be positive and not exceed 105.

    It is guaranteed that there exists at least one magic square that meets the conditions.

    Example

    Input
    0 1 1
    1 0 1
    1 1 0
    Output
    1 1 1
    1 1 1
    1 1 1
    Input
    0 3 6
    5 0 5
    4 7 0
    Output
    6 3 6
    5 5 5
    4 7 4


    本题为数学题,列方程可得解
    将第一个至第九个元素分别用字母代表,即方阵为 a b c
                           d e f
                           g h i
    a,e,h为未知数

    代码如下
     1 #include<cstdio>
     2 #include<iostream>
     3 #include<algorithm>
     4 #include<cstring>
     5 #include<cmath>
     6 using namespace std;
     7  
     8 int main()
     9 {
    10     int A,B,C,D,E,F,G,H,I;
    11     scanf("%d%d%d%d%d%d%d%d%d",&A,&B,&C,&D,&E,&F,&G,&H,&I);
    12     I = D + (F - H)/2;
    13     A = (F+H)/2;
    14     E = B+C - I;
    15     printf("%d %d %d
    %d %d %d
    %d %d %d
    ",A,B,C,D,E,F,G,H,I);
    16     return 0;
    17 }



  • 相关阅读:
    WPF 对Border 边框进行投影
    WPF 自定义可拖动标题栏
    WPF 静态资源(StaticResource)和动态资源(DynamicResource)
    SQL数据分组后取第一条数据——PARTITION BY
    驱动程序无法通过使用安全套接字层(SSL)加密与 SQL Server 建立安全连接。错误:“The server selected protocol version TLS10 is not accepted by client
    Windows 安装 MySQL 5.7 x64 位
    kubeadm init port is in use
    SQL Server 2016 安装
    驼峰下划线互转
    使用 Kubeadm 部署 Kubernetes(K8S) 安装
  • 原文地址:https://www.cnblogs.com/Lightfall/p/8322442.html
Copyright © 2020-2023  润新知