POJ - 1700 Crossing River【贪心】

2 篇文章 0 订阅

描述: A group of N people wishes to go across a river with only one boat, which can at most carry two persons. Therefore some sort of shuttle arrangement must be arranged in order to row the boat back and forth so that all people may cross. Each person has a different rowing speed; the speed of a couple is determined by the speed of the slower one. Your job is to determine a strategy that minimizes the time for these people to get across.

(N个人要过河,但却只有一条船,它最多只能携带两个人。每个人都有不同的划船速度,两个人在船上的速度是由速度最慢的那个人决定的。你的工作是找个最大限度地减少时间的过河方案)

思路:贪心

实现代码:

#include<stdio.h>
#include<stdlib.h>
int cmp(const void *a,const void *b)
{
    return *(int *)a-*(int *)b;
}
int main()
{
    int n;
    scanf("%d",&n);
    while(n--)
    {
        int m;
        scanf("%d",&m);
        int a[1001];
        for(int i=0;i<m;i++)scanf("%d",&a[i]);
        qsort(a,m,sizeof(int),cmp);
        int sum=0;
        int i=m-1;
        if(i==0)sum=a[0];
        while(i>0)
        {
            if(i==1) sum+=a[i];
            else if(i==2)sum+=a[0]+a[1]+a[2];
            else sum += a[0]*2+a[i]+a[i-1] < a[1]*2+a[0]+a[i] ? a[0]*2+a[i]+a[i-1] : a[1]*2+a[0]+a[i];
            i-=2;
        }
        printf("%d\n",sum);
    }
    return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值