HDU 5523 Game

很不错的一道小模拟 需要分几种情况来讨论

首先 当起点等于终点时 如果n不为1 则无解输出-1 

然后用3个值分别表示ss(起点和边界距离) tt(终点和边界距离) st(起点和终点距离 )

然后分情况讨论即可

#include<iostream>
#include<cstdio>
#include<cstring>
#include<cctype>
#include<cmath>
#include<vector>
#include<queue>
#include<map>
#include<algorithm>
#include<set>
#define scnaf scanf
#define cahr char
#define bug puts("=========================");
using namespace std;
typedef long long ll;
const int maxn=3000+5;
const int mod=1000000007;
int main()
{
    int n,s,t;
    while(~scnaf("%d%d%d",&n,&s,&t))
    {
        if(t==s)
        {
            if(n!=1)
                puts("-1");
            else puts("0");
            continue;
        }
        int ss=0,tt=0,st=0;
        if(s!=1&&s!=n) ss++;
        if(t!=1&&t!=n) tt++;
        if(abs(t-s)!=1) st++;
        if(ss+tt==0) puts("0");
        else if(st==0){
            puts("1");
        }
        else {
            if(ss==0) puts("1");
            else  puts("2");
        }
    }
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值