CodeForceS#276-B(求最大值)

B. Valuable Resources
 

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.

Sample test(s)
input
2
0 0
2 2
output
4
input
2
0 0
0 3
output
9

 这道题又被玩了,用int各种超范围。。。以后要注意啦。。。

题目很简单,CF竟然把A,B题颠倒,别有用心啊。就是让你求能把所有点放在一个正方形里,这个正方形边平行x轴y轴

 

#include <cstdio>
#include <iostream>
#include <cstring>
#include <cstdlib>
#include <algorithm>
using namespace std;

long long INF = 1E9 + 10;
typedef long long LL;
///又被玩了。。。
int main()
{
    int n;
    LL x, y;

    while(scanf("%d", &n) != EOF)
    {
        LL min_x = INF, min_y = INF, max_x = -INF, max_y = -INF;
        for(int i = 0; i < n; ++i)
        {
            cin >> x >> y;
            min_x = min(min_x, x);
            min_y = min(min_y, y);
            max_y = max(max_y, y);
            max_x = max(max_x, x);
        }
        LL xx = max_x - min_x;
        LL yy = max_y - min_y;
        LL dis = (xx > yy) ? xx : yy;
        cout << dis * dis <<endl;
    }
    return 0;
}
View Code

 

转载于:https://www.cnblogs.com/ya-cpp/p/4077770.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值