A. Valera and Plates----贪心

来源:互联网 发布:淘宝店铺banner全屏 编辑:程序博客网 时间:2024/05/19 17:50

A. Valera and Plates
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

Valera is a lazy student. He has m clean bowls and k clean plates.

Valera has made an eating plan for the next n days. As Valera is lazy, he will eat exactly one dish per day. At that, in order to eat a dish, he needs exactly one clean plate or bowl. We know that Valera can cook only two types of dishes. He can eat dishes of the first type from bowls and dishes of the second type from either bowls or plates.

When Valera finishes eating, he leaves a dirty plate/bowl behind. His life philosophy doesn't let him eat from dirty kitchenware. So sometimes he needs to wash his plate/bowl before eating. Find the minimum number of times Valera will need to wash a plate/bowl, if he acts optimally.

Input

The first line of the input contains three integers nmk (1 ≤ n, m, k ≤ 1000) — the number of the planned days, the number of clean bowls and the number of clean plates.

The second line contains n integers a1, a2, ..., an (1 ≤ ai ≤ 2). If ai equals one, then on day i Valera will eat a first type dish. If aiequals two, then on day i Valera will eat a second type dish.

Output

Print a single integer — the minimum number of times Valera will need to wash a plate/bowl.

Examples
input
3 1 11 2 1
output
1
input
4 3 11 1 1 1
output
1
input
3 1 22 2 2
output
0
input
8 2 21 2 1 2 1 2 1 2
output
4
Note

In the first sample Valera will wash a bowl only on the third day, so the answer is one.

In the second sample, Valera will have the first type of the dish during all four days, and since there are only three bowls, he will wash a bowl exactly once.

In the third sample, Valera will have the second type of dish for all three days, and as they can be eaten from either a plate or a bowl, he will never need to wash a plate/bowl.


题目链接:http://codeforces.com/contest/369/problem/A


题目的意思是说一个人有m个碗k个盘子,他要吃n顿饭,有两种饭,第一种要用一个碗,第二种可以用一个碗也可以用一个盘子,他每次洗完可以洗一个盘子或一个碗,问他要吃饭n顿饭最少要洗多少次碗。

很简单的思路,贪心,能用盘子的用盘子,用不了盘子用碗,如果没得可用就洗一个。

代码:

#include <cstdio>#include <cstring>#include <iostream>using namespace std;int main(){    int n,m,k,x,ans=0;    scanf("%d%d%d",&n,&m,&k);    while(n--){        scanf("%d",&x);        if(x==1){            if(m)                m--;            else                ans++;        }        else{            if(k)                k--;            else if(m)                m--;            else                ans++;        }    }    printf("%d\n",ans);    return 0;}



原创粉丝点击