杭电-5523

/*
s与t的位置就两种, s  t  或   t  s
就四种情况  0 1 2 -1,
自己去考虑下,说不清

*/

#include<stdio.h>
#include<math.h>
#include<iostream>
using namespace std;
int main()
{
        int n,s,t;
        while (~scanf ("%d%d%d",&n,&s,&t))
        {
                if (n>1 && s==t)//有点坑
                {
                        printf("-1\n");continue;
                }
                if (s==1 && t==n || s==n && t==1)//各自在起始位置
                {
                        printf("0\n"); continue;
                }
                if (n==1 || n==2)//这个不用说
                {
                        printf("0\n"); continue;
                }
                if ((s-t)==-1 || (s-t)==1)//s与t相邻
                {
                        printf("1\n");continue;
                }
                if (s==1 || s==n)//s在两端
                {
                        printf("1\n");continue;
                }
                printf("2\n");
        }
        return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值