比赛 | 名字我取了 | 评测结果 | AAAAAAAAAA |
---|---|---|---|
题目名称 | 餐馆的桌子 | 最终得分 | 100 |
用户昵称 | Shirry | 运行时间 | 0.034 s |
代码语言 | C++ | 内存使用 | 0.29 MiB |
提交时间 | 2017-09-15 19:22:32 | ||
#include<cstdio> #include<cstring> #include<algorithm> using namespace std; int n,a,b,t,d,ans; int main(){ freopen("RT.in","r",stdin); freopen("RT.out","w",stdout); scanf("%d%d%d",&n,&a,&b); for(int i=1;i<=n;i++){ scanf("%d",&t); if(t==1){ if(a)a--; else if(b)b--,d++; else if(d)d--; else ans++; } if(t==2){ if(b)b--; else ans+=2; } } printf("%d\n",ans); return 0; }