题干:
Many computer strategy games require building cities, recruiting army, conquering tribes, collecting resources. Sometimes it leads to interesting problems.
Let's suppose that your task is to build a square city. The world map uses the Cartesian coordinates. The sides of the city should be parallel to coordinate axes. The map contains mines with valuable resources, located at some points with integer coordinates. The sizes of mines are relatively small, i.e. they can be treated as points. The city should be built in such a way that all the mines are inside or on the border of the city square.
Building a city takes large amount of money depending on the size of the city, so you have to build the city with the minimum area. Given the positions of the mines find the minimum possible area of the city.
Input
The first line of the input contains number n — the number of mines on the map (2 ≤ n ≤ 1000). Each of the next n lines contains a pair of integers xi and yi — the coordinates of the corresponding mine ( - 109 ≤ xi, yi ≤ 109). All points are pairwise distinct.
Output
Print the minimum area of the city that can cover all the mines with valuable resources.
Examples
Input
2 0 0 2 2
Output
4
Input
2 0 0 0 3
Output
9
题目大意:
给定一些点,要用尽量小的正方形框住所有的点,输出矩形的大小。
解题报告:
这题主要就是读题的时候没注意那个“正方形”,直到看到样例,,其实题目中说的很清楚“Let's suppose that your task is to build a square city. ”。。。英文不及格好吧、、
AC代码:
#include<cstdio>
#include<iostream>
#include<algorithm>
#include<queue>
#include<map>
#include<vector>
#include<set>
#include<string>
#include<cmath>
#include<cstring>
#define ll long long
#define pb push_back
#define pm make_pair
using namespace std;
const int MAX = 2e5 + 5;
int n,x,y,a[MAX],ans;
const ll INF = 0x3f3f3f3f3f;
int main()
{
ll n,x,y,minx = INF,miny = INF,maxx = -INF,maxy = -INF;
cin>>n;
while(n--) {
scanf("%lld%lld",&x,&y);
minx = min(minx,x); maxx = max(maxx,x);
miny = min(miny,y); maxy = max(maxy,y);
}
ll tmp = max((maxx-minx),(maxy-miny));
printf("%lld\n", tmp*tmp);
return 0;
}