洛谷 P1007 独木桥

思路:士兵过独木桥,如果两个人相遇后两个人就互换位置,其实我们可以把其抽象出来,我们可以把士兵看成一个透明的人,因为相遇两者就换方向,那和一个人一直往前走没啥区别所以可以抽像出来,最短的时间是所有人中最短时间中最大的,同理最长的时间也是如此

#include <stdio.h>
int main()
{
    int longs;//桥的长度
    int peoples;//在桥上的人数
    int place[80];//士兵的位置
    int times1[80];//最短的时间
    int x1 = 0;
    //int x2 = 0;
    int times2[80];//最长的时间
    int i;
    int max1;//最短时间最大值
    int max2;//最长时间的最大值
    scanf("%d",&longs);
    scanf("%d",&peoples);
    for(i = 0;i < peoples;i ++)
    {
        scanf("%d",&place[i]);


    }
    for(i = 0;i < peoples;i ++)
    {
        if(place[i] > longs + 1 - place[i])
        {
            times2[x1] = place[i];

            times1[x1] = longs + 1 - place[i];
            x1 ++;
        }
        else
        {
             times1[x1] = place[i];

            times2[x1] = longs + 1 - place[i];
            x1 ++;

        }


    }
    //最短时间
    max1 = times1[0];
    for(i = 0;i < x1;i ++)
    {
        if(max1 < times1[i])
        {
            max1 = times1[i];
        }

    }
    //最长时间
    max2 = times2[0];
    for(i = 0;i < x1;i ++)
    {
        if(max2 < times2[i])
        {
            max2 = times2[i];
        }
    }
    printf("%d %d",max1,max2);
    return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值