Crossing River

最优过河策略
本文介绍了一种关于多人利用一艘船过河的最优策略问题。通过分析不同人的划船速度,采取合理的往返安排,以实现全体人员过河时间最短的目标。文章提供了具体的算法思路和实现代码。
Crossing River
Time Limit: 1000MS Memory Limit: 10000K
Total Submissions: 11814 Accepted: 4476

Description

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.

Input

The first line of the input contains a single integer T (1 <= T <= 20), the number of test cases. Then T cases follow. The first line of each case contains N, and the second line contains N integers giving the time for each people to cross the river. Each case is preceded by a blank line. There won't be more than 1000 people and nobody takes more than 100 seconds to cross.

Output

For each test case, print a line containing the total number of seconds required for all the N people to cross the river.

Sample Input

1
4
1 2 5 10

Sample Output

17


题目大意&解题思路:
一些人想要过河,例如4个人过河的所需时间分别为:1,2,5,10
那么过河有两种方法:
1. 1与2,1回来,1与5,1回来,1与10 结果耗时19
2. 1yu2,2回来,5与10,1回来,1与2 结果耗时15

总结两种方法:
设 x,y为最快和次快,a,b为次慢和最慢
那么第一种耗时t=y+x+a+x+b
第二种耗时t=y+y+b+x+y

重点就在于2*y和x+a谁大谁小

根据贪心的思想,每一次都比较一下呗
谁小选谁

代码:


#include"iostream"
#include"algorithm"
using namespace std;
int a[1010];
int main()
{
int T,n,sum;
cin>>T;
while(T--){
cin>>n;
for(int k=0;k<n;k++){
cin>>a[k];
}
sum=0;
sort(a,a+n);
if(n==1)
sum+=a[0];
while(n>1)
{
if(n==2)
sum+=a[1];
if(n==3)
sum+=(a[0]+a[1]+a[2]);
if(n>=4)
{
if(2*a[1]-a[n-2]-a[0]<0)
{
sum+=(a[0]+2*a[1]+a[n-1]);
}
else
{
sum+=(2*a[0]+a[n-2]+a[n-1]);
}
}
n-=2;
}
cout<<sum<<endl;
}

return 0;
};

转载于:https://www.cnblogs.com/zsyacm666666/p/4652644.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值