首页 > 代码库 > CodeForces 369A Valera and Plates( 水)
CodeForces 369A Valera and Plates( 水)
#include<cstdio>#include<cstring>#include<iostream>#include<algorithm>using namespace std;int bowl,plate;int n;int dish[1100];int main(){ int i,j; while(scanf("%d%d%d",&n,&bowl,&plate)!=EOF) { int ans=0; for(i=1;i<=n;i++) { scanf("%d",&dish[i]); } for(i=1;i<=n;i++) { if(dish[i]==1) { if(bowl>0) { bowl--; } else if(bowl==0) { ans++; } } else if(dish[i]==2) { if(plate>0) { plate--; } else if(bowl>0) { bowl--; } else { ans++; } } } printf("%d\n",ans); } return 0;}
CodeForces 369A Valera and Plates( 水)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。