CF158B.Taxi

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

After the lessons nn groups of schoolchildren went outside and decided to visit Polycarpus to celebrate his birthday. We know that the ii -th group consists of sis_{i} friends ( 1<=si<=41<=s_{i}<=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)?

输入格式

The first line contains integer nn ( 1<=n<=1051<=n<=10^{5} ) — the number of groups of schoolchildren. The second line contains a sequence of integers s1,s2,...,sns_{1},s_{2},...,s_{n} ( 1<=si<=41<=s_{i}<=4 ). The integers are separated by a space, sis_{i} is the number of children in the ii -th group.

输出格式

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

输入输出样例

  • 输入#1

    5
    1 2 4 3 3
    

    输出#1

    4
    
  • 输入#2

    8
    2 3 4 4 2 1 3 1
    

    输出#2

    5
    

说明/提示

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.

首页