B. Taxi

编程入门 行业动态 更新时间:2024-10-26 10:29:01

B. <a href=https://www.elefans.com/category/jswz/34/1690590.html style=Taxi"/>

B. Taxi

链接:

After the lessons n groups of schoolchildren went outside and decided to visit Polycarpus to celebrate his birthday. We know that the i-th group consists of si friends (1 ≤ si ≤ 4), and they want to go to Polycarpus together. They decided to get there by taxi. Each car can carry at most four passengers. What minimum number of cars will the children need if all members of each group should ride in the same taxi (but one taxi can take more than one group)?

Input

The first line contains integer n (1 ≤ n ≤ 105) — the number of groups of schoolchildren. The second line contains a sequence of integers s1, s2, ..., sn (1 ≤ si ≤ 4). The integers are separated by a space, si is the number of children in the i-th group.

Output

Print the single number — the minimum number of taxis necessary to drive all children to Polycarpus.

Examples

input

Copy

5
1 2 4 3 3

output

Copy

4

input

Copy

8
2 3 4 4 2 1 3 1

output

Copy

5

Note

In the first test we can sort the children into four cars like this:

  • the third group (consisting of four children),
  • the fourth group (consisting of three children),
  • the fifth group (consisting of three children),
  • the first and the second group (consisting of one and two children, correspondingly).

There are other ways to sort the groups into four cars.

代码:

#include<bits/stdc++.h>
using namespace std;
long long n,t,l,r,k,s,d,max1=0,b,c,mod=1e9+7;
long long a[100005];
map<long long,long long>m,p;
int main()
{cin>>n;for(int i=1;i<=n;i++){cin>>a[i];}sort(a+1,a+1+n);for(int i=n,j=1;i>=j;i--){if(a[i]==4||i==j){s++;}else if(a[i]==3){if(a[i]+a[j]==4){s++;a[j]=0;j++;}else if(a[i]+a[j]>4){s++;}}else if(a[i]==2){if(a[i]+a[j]==4){s++;a[j]=0;j++;}else if(a[j]==1){if(a[j+1]==1&&j+1<i){s++;a[j]=0;j++;a[j]=0;j++;}else if(a[j+1]==2&&j+1<i){s++;a[j]=0;j++;a[j]=1;}else if(j+1==i){s++;break;}}}else if(a[i]==1){s+=ceil((i-j+1)*1.0/4);break;}}cout<<s;
} 

 

更多推荐

B. Taxi

本文发布于:2024-02-13 03:58:47,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1690586.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:Taxi

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!