比赛 近期练习题回顾 评测结果 AAAAAAAAAA
题目名称 Teleportation 最终得分 100
用户昵称 梦那边的美好ET 运行时间 0.005 s
代码语言 C++ 内存使用 13.66 MiB
提交时间 2018-10-31 07:39:00
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<cstring>
#include<cmath>
#include<algorithm>
using namespace std;
int a,b,x,y,ans; 
inline int hs(int p){return(p<0)?-p:p;}
int main(){
    freopen("teleport_bronze_18feb.in","r",stdin);
    freopen("teleport_bronze_18feb.out","w",stdout);
    scanf("%d%d%d%d",&a,&b,&x,&y);
    ans=min(hs(a-x)+hs(b-y),min(hs(a-y)+hs(b-x),hs(a-b)));
    printf("%d",ans);
    return 0;
}