📜  方阵所有部分的总和除以其对角线

📅  最后修改于: 2021-09-06 05:09:38             🧑  作者: Mango

给定一个N*N维的二维矩阵arr[][] ,任务是找到矩阵所有四个部分的元素之和除以对角线,而不包括四个部分中任何一个的对角线元素。
例子:

方法:

如上图所示,将大小为NxN的矩阵除以对角线后。我们观察到以下属性:

  1. 如果行和列的索引总和小于N – 1则它属于顶部或左侧部分。
    • 如果列索引大于行索引,则它属于顶部部分。
    • 否则它属于部分。
  2. 否则它属于右部分或下部分。
    • 如果列索引大于行索引,则它属于部分。
    • 否则它属于向下部分。

下面是上述方法的实现:

C++
// C++ program for the above approach
#include "bits/stdc++.h"
using namespace std;
 
// Function to calculate the
// sum of all parts of matrix
void SumOfPartsOfMetrics(int* arr,
                         int N)
{
 
    // To store the sum of all four
    // parts of the diagonals
    int top, bottom, left, right;
 
    // Intialise respective sum
    // as zero
    top = bottom = right = left = 0;
 
    // Traversing the matrix
    for (int i = 0; i < N; i++) {
        for (int j = 0; j < N; j++) {
 
            // If i + j < N -1
            // then it belongs to
            // top or left
            if (i + j < N - 1 && i != j) {
 
                // Belongs to top
                if (i < j) {
                    top += (arr + i * N)[j];
                }
 
                // Belongs to left
                else {
                    left += (arr + i * N)[j];
                }
            }
 
            // If i+j > N - 1 then
            // it belongs to right
            // or bottom
            else if (i + j > N - 1 && i != j) {
 
                // Belongs to right
                if (i > j) {
                    bottom += (arr + i * N)[j];
                }
 
                // Belongs to bottom
                else {
                    right += (arr + i * N)[j];
                }
            }
        }
    }
    cout << top << ' ' << left
         << ' ' << right << ' '
         << bottom << endl;
}
 
// Driver Code
int main()
{
    int N = 4;
    int arr[N][N] = { { 1, 3, 1, 5 },
                      { 2, 2, 4, 1 },
                      { 5, 0, 2, 3 },
                      { 1, 3, 3, 5 } };
    // Function call to find print
    // sum of al parts
    SumOfPartsOfMetrics((int*)arr, N);
    return 0;
}


Java
// Java program for the above approach
class GFG {
 
// Function to calculate the
// sum of all parts of matrix
static void SumOfPartsOfMetrics(int [][]arr,
                                int N)
{
     
    // To store the sum of all four
    // parts of the diagonals
    // Intialise respective sum
    // as zero
    int top = 0, bottom = 0;
    int left = 0, right = 0;
 
    // Traversing the matrix
    for(int i = 0; i < N; i++)
    {
       for(int j = 0; j < N; j++)
       {
           
          // If i + j < N -1
          // then it belongs to
          // top or left
          if (i + j < N - 1 && i != j)
          {
               
              // Belongs to top
              if (i < j)
              {
                  top += arr[i][j];
              }
               
              // Belongs to left
              else
              {
                  left += arr[i][j];
              }
          }
           
          // If i+j > N - 1 then
          // it belongs to right
          // or bottom
          else if (i + j > N - 1 && i != j)
          {
               
              // Belongs to right
              if (i > j)
              {
                  bottom += arr[i][j];
              }
               
              // Belongs to bottom
              else
              {
                  right += arr[i][j];
              }
          }
       }
    }
    System.out.println(top + " " + left + " " +
                     right + " " + bottom);
}
     
// Driver Code
public static void main (String[] args)
{
    int N = 4;
    int arr[][] = { { 1, 3, 1, 5 },
                    { 2, 2, 4, 1 },
                    { 5, 0, 2, 3 },
                    { 1, 3, 3, 5 } };
                         
    // Function call to find print
    // sum of al parts
    SumOfPartsOfMetrics(arr, N);
}
}
 
// This code is contributed by AnkitRai01


Python3
# Python3 program for the above approach
 
# Function to calculate the
# sum of all parts of matrix
def SumOfPartsOfMetrics(arr, N):
 
    # To store the sum of all four
    # parts of the diagonals
    # Intialise respective sum
    # as zero
    top = bottom = right = left = 0;
 
    # Traversing the matrix
    for i in range(N):
        for j in range(N):
 
            # If i + j < N -1
            # then it belongs to
            # top or left
            if (i + j < N - 1 and i != j):
 
                # Belongs to top
                if (i < j):
                    top += arr[i][j];
             
                # Belongs to left
                else:
                    left += arr[i][j];
 
            # If i+j > N - 1 then
            # it belongs to right
            # or bottom
            elif (i + j > N - 1 and i != j):
 
                # Belongs to right
                if (i > j):
                    bottom += arr[i][j];
 
                # Belongs to bottom
                else:
                    right += arr[i][j];
             
    print(top, left, right, bottom);
 
# Driver Code
if __name__ == "__main__":
 
    N = 4;
    arr = [ [ 1, 3, 1, 5 ],
            [ 2, 2, 4, 1 ],
            [ 5, 0, 2, 3 ],
            [ 1, 3, 3, 5 ] ];
             
    # Function call to find print
    # sum of al parts
    SumOfPartsOfMetrics(arr, N);
     
# This code is contributed by AnkitRai01


C#
// C# program for the above approach
using System;
 
class GFG {
 
// Function to calculate the
// sum of all parts of matrix
static void SumOfPartsOfMetrics(int [,]arr,
                                int N)
{
         
    // To store the sum of all four
    // parts of the diagonals
    // Intialise respective sum
    // as zero
    int top = 0, bottom = 0;
    int left = 0, right = 0;
     
    // Traversing the matrix
    for(int i = 0; i < N; i++)
    {
       for(int j = 0; j < N; j++)
       {
 
          // If i + j < N -1
          // then it belongs to
          // top or left
          if (i + j < N - 1 && i != j)
          {
               
              // Belongs to top
              if (i < j)
              {
                  top += arr[i, j];
              }
               
              // Belongs to left
              else
              {
                  left += arr[i, j];
              }
          }
           
          // If i+j > N - 1 then
          // it belongs to right
          // or bottom
          else if (i + j > N - 1 && i != j)
          {
                 
            // Belongs to right
            if (i > j)
            {
                bottom += arr[i, j];
            }
             
            // Belongs to bottom
            else
            {
                right += arr[i, j];
            }
          }
       }
    }
    Console.WriteLine(top + " " + left + " " +
                    right + " " + bottom);
}
         
// Driver Code
public static void Main (string[] args)
{
    int N = 4;
    int [,]arr = { { 1, 3, 1, 5 },
                   { 2, 2, 4, 1 },
                   { 5, 0, 2, 3 },
                   { 1, 3, 3, 5 } };
                             
    // Function call to find print
    // sum of al parts
    SumOfPartsOfMetrics(arr, N);
}
}
 
// This code is contributed by AnkitRai01


Javascript


输出:
4 7 4 6

时间复杂度: O(N 2 )

如果您想与行业专家一起参加直播课程,请参阅Geeks Classes Live