2102: 停车场车辆统计

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:1 Solved:1

Description

特定大小的停车场,数组cars[]表示,其中1表示有车,0表示没车。 车辆大小不一,小车占一个车位(长度1),货车占两个车位(长度2),卡车占三个车位(长度3)。 统计停车场最少可以停多少辆车,返回具体的数目。

Input

整型字符串数组cars[],其中1表示有车,0表示没车,数组长度小于1000。

Output

整型数字字符串,表示最少停车数目。

Sample Input Copy

1,0,1

Sample Output Copy

2

Source/Category