题目
原题链接:A. Valera and Plates
题意
有m个碗和k个碟,吃饭后不会洗碗碟,接下来有n顿饭,1代表用碗,2代表两者皆可。问最后需要洗几个餐具。
代码
#include
using namespace std;
int main() {
int n,m,k,t,ans=0;
cin>>n>>m>>k;
for(int i=0;i>t;
if(t==1){
if(m>0) m--;
else ans++;
} else {
if(k>0) k--;
else if(m>0) m--;
else ans++;
}
}
cout<