前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >CodeForces - 1047B Cover Points

CodeForces - 1047B Cover Points

作者头像
风骨散人Chiam
发布2020-10-28 10:36:56
4090
发布2020-10-28 10:36:56
举报
文章被收录于专栏:CSDN旧文CSDN旧文

B. Cover Points time limit per test1 second memory limit per test256 megabytes inputstandard input outputstandard output There are n points on the plane, (x1,y1),(x2,y2),…,(xn,yn).

You need to place an isosceles triangle with two sides on the coordinate axis to cover all points (a point is covered if it lies inside the triangle or on the side of the triangle). Calculate the minimum length of the shorter side of the triangle.

Input First line contains one integer n (1≤n≤105).

Each of the next n lines contains two integers xi and yi (1≤xi,yi≤109).

Output Print the minimum length of the shorter side of the triangle. It can be proved that it’s always an integer.

Examples inputCopy 3 1 1 1 2 2 1 outputCopy 3 inputCopy 4 1 1 1 2 2 1 2 2 outputCopy 4 Note Illustration for the first example:

在这里插入图片描述
在这里插入图片描述

Illustration for the second example:

在这里插入图片描述
在这里插入图片描述

题意是找一个三角形把所有点都覆盖,求等腰三角形最短边长。额他的长度因为是等腰直角三角型,很奇怪,最大的X+Y正好是最短边长。

代码语言:javascript
复制
#include<bits/stdc++.h>
using namespace std;
int main()
{
    int n,a,b,max2=0;
    cin>>n;
    while(n--)
    {
        scanf("%d %d",&a,&b);
        max2=max(a+b,max2);
    }
    cout<<max2<<endl;
    return 0;
}
本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2019-05-23 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档