M. Quadcopter Competition

M. Quadcopter Competition
time limit per test
3 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

Polycarp takes part in a quadcopter competition. According to the rules a flying robot should:

start the race from some point of a field,
go around the flag,
close cycle returning back to the starting point. 

Polycarp knows the coordinates of the starting point (x1, y1) and the coordinates of the point where the flag is situated (x2, y2). Polycarp’s quadcopter can fly only parallel to the sides of the field each tick changing exactly one coordinate by 1. It means that in one tick the quadcopter can fly from the point (x, y) to any of four points: (x - 1, y), (x + 1, y), (x, y - 1) or (x, y + 1).

Thus the quadcopter path is a closed cycle starting and finishing in (x1, y1) and containing the point (x2, y2) strictly inside.
The picture corresponds to the first example: the starting (and finishing) point is in (1, 5) and the flag is in (5, 2).

What is the minimal length of the quadcopter path?
Input

The first line contains two integer numbers x1 and y1 ( - 100 ≤ x1, y1 ≤ 100) — coordinates of the quadcopter starting (and finishing) point.

The second line contains two integer numbers x2 and y2 ( - 100 ≤ x2, y2 ≤ 100) — coordinates of the flag.

It is guaranteed that the quadcopter starting point and the flag do not coincide.
Output

Print the length of minimal path of the quadcopter to surround the flag and return back.
Examples
Input

1 5
5 2

Output

18

Input

0 1
0 0

Output

8

其实,这些题目,自己做过,但是比赛的时候一道也没做出来,感觉更丢人,而且,我觉得,自己的训练方法有问题,组队赛做的题目,自己也应该再做一遍,不能是理解个大概,不求甚解终会吃亏。

/*这是之前组队赛的思路,比赛的时候想出来的,但是,没有处理好,就差一点点。。。长个教训吧*/
#include <bits/stdc++.h>
using namespace std;
int main()
{
  int x1, x2, y1, y2;
  cin>>x1>>y1>>x2>>y2;
  int n = 0 - x2;
  int m = 0 - y2;
  x2 = y2 = 0;
  x1 += n;
  y1 += m;
  int a1 = x1;
  int b1 = y1;
  if(fabs(a1)==fabs(b1))/*比赛的时候,一直以为是下面处理的情况错误,后来才发现,是这一种情况不对,就擦一点点。。。。很尴尬。。*/
  {
    cout<<4*fabs(a1)+4<<endl;
  }
  else if(fabs(a1)==0||fabs(b1)==0)
  {
    if(fabs(a1)==0)
    cout<<6+fabs(b1)*2<<endl;
    else
    cout<<6+fabs(a1)*2<<endl;
  }
  else if(fabs(a1)==1||fabs(b1)==1)
  {
    if(fabs(a1)==1)
    cout<<6+fabs(b1)*2<<endl;
    else
    cout<<6+fabs(a1)*2<<endl;
  }
  else
  {
    if(a1>0&&b1>0&&fabs(a1)>fabs(b1))
    {
      x1= x1 + y1 - 1;
      cout<<6+fabs(x1)*2<<endl;
    }
   else if(a1>0&&b1<0&&fabs(a1)>fabs(b1))
    {
        x1= x1 - y1 - 1;
      cout<<6+fabs(x1)*2<<endl;
    }
    else if(a1<0&&b1>0&&fabs(a1)>fabs(b1))
    {
       x1= x1 - y1 + 1;
      cout<<6+fabs(x1)*2<<endl;
    }
    else if(a1<0&&b1<0&&fabs(a1)>fabs(b1))
    {
       x1= x1 + y1 + 1;
      cout<<6+fabs(x1)*2<<endl;
    }
    else if(a1>0&&b1>0&&fabs(a1)<fabs(b1))
    {
       y1 = y1 + x1 -1;
      cout<<6+fabs(y1)*2<<endl;
    }
   else if(a1>0&&b1<0&&fabs(a1)<fabs(b1))
    {
       y1= y1 - x1 + 1;
      cout<<6+fabs(y1)*2<<endl;
    }
    else if(a1<0&&b1>0&&fabs(a1)<fabs(b1))
    {
       y1= y1 - x1 - 1;
      cout<<6+fabs(y1)*2<<endl;
    }
    else if(a1<0&&b1<0&&fabs(a1)<fabs(b1))
    {
       y1= y1 + x1 + 1;
      cout<<6+fabs(y1)*2<<endl;
    }
  }
  return 0;
}

这是思维题目的思路:

#include <bits/stdc++.h>
using namespace std;
int main()
{
    int x1, x2, y1, y2;
    cin>>x1>>y1>>x2>>y2;
    int a1 = x1 - x2;
    int b1 = y1 - y2;
    if(fabs(a1)==0||fabs(b1)==0)
    {
      if(fabs(a1)==0)
      cout<<2*fabs(b1)+6<<endl;
      else
      cout<<2*fabs(a1)+6<<endl;
    }
    else
    cout<<(fabs(a1)+fabs(b1))*2+4<<endl;
    return 0;
}
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值