Trace of a matrix
Practice
3.5 (123 votes)
Basic programming
Approved
Easy
Problem
48% Success 3527 Attempts 20 Points 1s Time Limit 256MB Memory 1024 KB Max Code
Given Two matrix A and B of some order RXC. Both matrix contains elements from 1 to R*C . Matrix A contains elements in Row-major order while Matrix B contains elements in Column-major order .you are asked to answer a very simple question what is the trace of the matrix formed by the addition of A and B. Here, Trace of the matrix is defined as P[1][1] + P[2][2]... + P[min(n,m)][min(n,m)] for any rectangular matrix P.
INPUT:
First line of input contains T denoting number of test cases. Each test case consists of single line only containing two integers denoting order of matrix R and C.
OUTPUT: output consists of T lines each containing answer to the corresponding test cases.
CONSTRAINTS
T<=10^5
1<=R,C<=10^6
Submissions
Please login to view your submissions
Similar Problems
Points:20
32 votes
Tags:
Dynamic ProgrammingEasy
Points:30
8 votes
Tags:
Advanced Data StructuresAlgorithmsData StructuresFenwick TreeMediumOpen
Points:30
Tags:
Easy-Medium
Editorial