Algorithm


A. Minimal Square
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

Find the minimum area of a square land on which you can place two identical rectangular a×b�×� houses. The sides of the houses should be parallel to the sides of the desired square land.

Formally,

  • You are given two identical rectangles with side lengths a and b (1a,b1001≤�,�≤100) — positive integers (you are given just the sizes, but not their positions).
  • Find the square of the minimum area that contains both given rectangles. Rectangles can be rotated (both or just one), moved, but the sides of the rectangles should be parallel to the sides of the desired square.

Two rectangles can touch each other (side or corner), but cannot intersect. Rectangles can also touch the sides of the square but must be completely inside it. You can rotate the rectangles. Take a look at the examples for a better understanding.

The picture shows a square that contains red and green rectangles.
Input

The first line contains an integer t (1t100001≤�≤10000) —the number of test cases in the input. Then t test cases follow.

Each test case is a line containing two integers ab (1a,b1001≤�,�≤100) — side lengths of the rectangles.

Output

Print t answers to the test cases. Each answer must be a single integer — minimal area of square land, that contains two rectangles with dimensions a×b�×�.

Example
input
Copy
8
3 2
4 2
1 1
3 1
4 7
1 3
7 4
100 100
output
Copy
16
16
4
9
64
9
64
40000
Note

Below are the answers for the first two test cases:

 

Code Examples

#1 Code Example with C++ Programming

Code - C++ Programming

#include<bits/stdc++.h>
using namespace std;

int main(){
  int t;
  cin >> t;
  int a, b, area;
  while(t--){
    cin >> a >> b;
    if(b <= a){
      if(2 * b < a){
        area = a * a;
      }
      else{
        area = 4 * b * b;
      }
    }
    else{
      if(2 * a < b){
        area = b * b;
      }
      else{
        area = 4 * a * a;
      }
    }
    cout << area << endl;
  }
  return 0;
}
Copy The Code & Try With Live Editor

Input

x
+
cmd
8
3 2
4 2
1 1
3 1
4 7
1 3
7 4
100 100

Output

x
+
cmd
16
16
4
9
64
9
64
40000
Advertisements

Demonstration


Codeforcess solution 1360-A A. Minimal Square ,C++, Java, Js and Python,1360-A Codeforcess solution

Previous
Codeforces solution 1080-B-B. Margarite and the best present codeforces solution
Next
CodeChef solution DETSCORE - Determine the Score CodeChef solution C,C+