标签:
进行一次独木舟的旅行活动,独木舟可以在港口租到,并且之间没有区别。一条独木舟最多只能乘坐两个人,且乘客的总重量不能超过独木舟的最大承载量。我们要尽量减少这次活动中的花销,所以要找出可以安置所有旅客的最少的独木舟条数。现在请写一个程序,读入独木舟的最大承载量、旅客数目和每位旅客的重量。根据给出的规则,计算要安置所有旅客必须的最少的独木舟条数,并输出结果。
3 85 6 5 84 85 80 84 83 90 3 90 45 60 100 5 50 50 90 40 60
5 3 3
1 #include<iostream> 2 using namespace std; 3 #include<algorithm> 4 bool CMP(int a,int b) 5 { 6 return a>b; 7 } 8 9 int peoplenum[310]; 10 int main() 11 { 12 int s,w,n,i,st,ed,count; 13 cin>>s; 14 while(s--) 15 { 16 count=0; 17 cin>>w>>n; 18 for(i=0;i<n;i++) 19 { 20 cin>>peoplenum[i]; 21 } 22 sort(peoplenum,peoplenum+n,CMP); 23 for(st=0,ed=n-1;st<=ed;) 24 { 25 if(peoplenum[st]+peoplenum[ed]<=w) 26 { 27 st++;ed--; 28 } 29 else 30 st++; 31 count++; 32 } 33 cout<<count<<endl; 34 } 35 return 0; 36 }
标签:
原文地址:http://www.cnblogs.com/ljwTiey/p/4307644.html