POJ 1700

Posted gcyyzf

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了POJ 1700相关的知识,希望对你有一定的参考价值。

这是一道贪心的题目

(贪心题好难,他们都是怎么想出来的)

当总人数大于等于4时,有两种情况

1 最快和最慢的过河,最快的回来;

 最快和次慢的过河,最快的回来。

2 最快和次快的过河,最快的回来;

 最慢和次慢的过河,次快的回来。

每次反复迭代,直到总人数比四小。

若总人数等于3 ,则是最快和最慢的过河,最快的回来,次快和最快过河。

若总人数等于2,则是最快和次快的过河。

若总人数等于1,则最快的过河。

#include <cstdio>
#include <cstring>
#include <iostream>
#include <algorithm>
using namespace std;
inline int read(){
	int x=0,f=1,ch=getchar();
	while(ch<‘0‘||ch>‘9‘){if(ch==‘-‘)f=-1;ch=getchar();}
	while(ch>=‘0‘&&ch<=‘9‘){x=x*10+ch-‘0‘;ch=getchar();}
	return x*f;
}
int a[1005];
int main(){
	int T=read();
	while(T--){
		int n=read(),ans=0;
		for(int i=1;i<=n;i++) a[i]=read();
		sort(a+1,a+1+n);
		while(n>=4) ans+=min(a[1]+a[2]*2+a[n],a[1]*2+a[n-1]+a[n]),n-=2;
		if(n==1) ans+=a[1];
		if(n==2) ans+=a[2];
		if(n==3) ans+=a[1]+a[2]+a[3];
		printf("%d
",ans);
	}
	return 0;
}

  

以上是关于POJ 1700的主要内容,如果未能解决你的问题,请参考以下文章

poj-1700 crossing river

POJ-1700 Crossing River

poj1700 Crossing River

poj1700真正感受到贪心的力量

POJ 1700 cross river (数学模拟)

POJ1700----Crossing River