CUC-SUMMER-7-A

A - Restaurant Tables
CodeForces - 828A

In a small restaurant there are a tables for one person and b tables for two persons.

It it known that n groups of people come today, each consisting of one or two people.

If a group consist of one person, it is seated at a vacant one-seater table. If there are none of them, it is seated at a vacant two-seater table. If there are none of them, it is seated at a two-seater table occupied by single person. If there are still none of them, the restaurant denies service to this group.

If a group consist of two people, it is seated at a vacant two-seater table. If there are none of them, the restaurant denies service to this group.

You are given a chronological order of groups coming. You are to determine the total number of people the restaurant denies service to.

Input
The first line contains three integers n, a and b (1 ≤ n ≤ 2·105, 1 ≤ a, b ≤ 2·105) — the number of groups coming to the restaurant, the number of one-seater and the number of two-seater tables.

The second line contains a sequence of integers t1, t2, ..., tn (1 ≤ ti ≤ 2) — the description of clients in chronological order. If ti is equal to one, then the i-th group consists of one person, otherwise the i-th group consists of two people.

Output
Print the total number of people the restaurant denies service to.

Example
Input
4 1 2
1 2 1 1
Output
0
Input
4 1 1
1 1 2 1
Output
2
Note
In the first example the first group consists of one person, it is seated at a vacant one-seater table. The next group occupies a whole two-seater table. The third group consists of one person, it occupies one place at the remaining two-seater table. The fourth group consists of one person, he is seated at the remaining seat at the two-seater table. Thus, all clients are served.

In the second example the first group consists of one person, it is seated at the vacant one-seater table. The next group consists of one person, it occupies one place at the two-seater table. It's impossible to seat the next group of two people, so the restaurant denies service to them. The fourth group consists of one person, he is seated at the remaining seat at the two-seater table. Thus, the restaurant denies service to 2 clients.


题意:一个饭店有一人桌和两人桌,对于单人来客如果有空的一人桌就安排到一人桌,没有则安排到空的两人桌,还没有就安排到已经有一个人的两人桌,否则就不招待了;对于两人来客只安排到双人桌,没有则不招待,问最多能招待多少人。

解法:分别对单人桌、双人桌、有一个人坐的双人桌计数,直接模拟即可,注意顾客是有顺序的。

代码:

#include<iostream>
using namespace std;
int main()
{
    int n,a,b,ans=0,c,d=0;
    cin>>n>>a>>b;
    for(int i=0;i<n;i++){
        cin>>c;
        if(c==1){
            if(a>0)
                a--;
            else if(b>0){
                b--;
                d++;
            }
            else if(d>0)
                d--;
            else
                ans++;
        }
        else{
            if(b>0)
                b--;
            else
                ans+=2;
        }
    }
    cout<<ans<<endl;
    return 0;
}
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容

  • **2014真题Directions:Read the following text. Choose the be...
    又是夜半惊坐起阅读 9,959评论 0 23
  • 感赏我亲爱儿子,咳嗽夜里睡不好,今天还一大早起床背着那么重书包上学,晚上八九点才回家,真的是太辛苦了,孩子,妈妈的...
    吴若阅读 137评论 0 0
  • 京城逍遥客阅读 359评论 12 6
  • 未来的你,我想和你说声对不起。 留给你的我是不完美的,没有童年的稚嫩,没有年少时的轻狂,没有了那青春的放纵。没有了...
    落下万般尘阅读 277评论 0 0
  • 我常常把世界上的人分为两种,一种是知道自己有病的人,一种是不知道自己有病的人。对于第一种,我敬佩至极。他们具有良好...
    李研书柜阅读 511评论 0 0