URAL - 1901 Space Elevators

题目:

Nowadays spaceships are never launched from the Earth's surface. There is a huge spaceport placed in the geostationary orbit and connected to the Earth with carbon nanotube cables. People and cargo are delivered to the orbit by elevators moving along these cables. It turned out that the space elevator is much more comfortable and cheaper than a spaceship.
Tomorrow a group of key employees of the “Akross” corporation will go to the spaceport with a secret mission. The spaceport management has reserved a special double elevator for the group. The Head of “Akross” demanded that at any given time the total importance of staff in the elevator must not exceed some fixed value. Under this condition, even in case of fatal accident the corporation will be able to recover. Employees enter the elevator in turns. The elevator is sent up if two people entered, or if only one person entered and the following person behind him is so significant for the corporation that it is impossible to send them together in one elevator.
The spaceport management wants to know the maximum number of elevator runs required to deliver all employees, so the right amount of oxygen cylinders and charged batteries can be prepared in advance.

Input

The first line contains integers  n and  s that are the amount of employees of “Akross” assigned to the mission, and the maximum total importance of two employees which can go together in the elevator (1 ≤  n ≤ 10  5; 1 ≤  s ≤ 10  9). The second line contains integers  v  1, …,  v  n that are the importance of the employees (1 ≤  v  i ≤  s).

Output

In the first line output the maximum amount of trips of the elevator. In the second line output the importance of staff in order from the first employee in the line to the last, for which the elevator will do this amount of trips. If there are several possible answers, output any of them.

Example

inputoutput
6 6
1 2 3 3 4 5
5
2 5 1 3 4 3

思路:先排序,然后贪心的选人获得最大运行次数。

 1 #include <bits/stdc++.h>
 2 
 3 using namespace std;
 4 
 5 #define MP make_pair
 6 #define PB push_back
 7 typedef long long LL;
 8 typedef pair<int,int> PII;
 9 const double eps=1e-8;
10 const double pi=acos(-1.0);
11 const int K=1e6+7;
12 const int mod=1e9+7;
13 
14 
15 int n,mx,v[100005],vis[100005],ans[100005];
16 int main(void)
17 {
18     scanf("%d%d",&n,&mx);
19     for(int i=1;i<=n;i++)
20         scanf("%d",&v[i]);
21     sort(v+1,v+1+n);
22     int sum=1,l=1,r=n;
23     while(l<r)
24     {
25         while(l<r && v[l]+v[r]<=mx)  l++;
26         if(l>=r)break;
27         ans[sum++]=v[l],vis[l++]=1;
28         ans[sum++]=v[r],vis[r--]=1;
29     }
30     for(int i=n;i;i--)if(!vis[i])
31         ans[sum++]=v[i];
32     sum=0;
33     for(int i=1;i<=n;i++)
34     if(ans[i]+ans[i+1]>mx)sum++;
35     else    sum++,i++;
36     printf("%d\n",sum);
37     for(int i=1;i<=n;i++)
38         printf("%d ",ans[i]);
39     return 0;
40 }

 

转载于:https://www.cnblogs.com/weeping/p/6383760.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值