Codeforces-Edu6-A. Professor GukiZ's Robot

A. Professor GukiZ’s Robot
time limit per test0.5 seconds
memory limit per test256 megabytes
inputstandard input
outputstandard output
Professor GukiZ makes a new robot. The robot are in the point with coordinates (x1, y1) and should go to the point (x2, y2). In a single step the robot can change any of its coordinates (maybe both of them) by one (decrease or increase). So the robot can move in one of the 8 directions. Find the minimal number of steps the robot should make to get the finish position.

Input
The first line contains two integers x1, y1 ( - 109 ≤ x1, y1 ≤ 109) — the start position of the robot.

The second line contains two integers x2, y2 ( - 109 ≤ x2, y2 ≤ 109) — the finish position of the robot.

Output
Print the only integer d — the minimal number of steps to get the finish position.

Sample test(s)
input
0 0
4 5
output
5
input
3 4
6 1
output
3
Note
In the first example robot should increase both of its coordinates by one four times, so it will be in position (4, 4). After that robot should simply increase its y coordinate and get the finish position.

In the second example robot should simultaneously increase x coordinate and decrease y coordinate by one three times.

水题, 根据分析可知,最小步数是起末位置的横纵坐标各自相减的绝对值小的那个加上彼此绝对值的差;

代码如下:

#include <bits/stdc++.h>
using namespace std;
int main()
{
    int a,b,x,y;
    int l1,l2,l;
    cin>>a>>b;   
    cin>>x>>y;
    l1=fabs(a-x);
    l2=fabs(b-y);
    if(l1>l2)
    {
        cout<<(l1-l2)+l2;
    }
    else 
    {
        cout<<(l2-l1)+l1;
    }
    return 0;
}

仅代表个人观点,不喜勿喷!
这里写图片描述

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值