https://codeforces.com/contest/1154/problem/D
题意:有个机器人在0位置处,现在要走到位置n。机器人现在有一个电池容量为a,还有一个蓄电池容量为b(一开始都是满的)。数组的值代表此处有没有光照。走一格耗1电量,如果机器人使用电池行走并在太阳下时,蓄电池电量+1.(不能超过容量),求最远的行走距离
题解:思维+模拟
有些翻译问题;在这里我们认为,电池是不能充电,蓄电池是可以充电的
1、一般情况下、遇到0,先用蓄电池,蓄电池没有电再用电池;(可再生资源和不可再生资源的问题)
2、si==1的是一般情况下、用电池通过,蓄电池充电;
3、si==1并且蓄电池满的情况下,蓄电池通过,因为你电池通过,蓄电池也不能充电,还不如用掉,为后面的充电留出空间;
/*
*@Author: STZG
*@Language: C++
*/
#include <bits/stdc++.h>
#include<iostream>
#include<algorithm>
#include<cstdlib>
#include<cstring>
#include<cstdio>
#include<string>
#include<vector>
#include<bitset>
#include<queue>
#include<deque>
#include<stack>
#include<cmath>
#include<list>
#include<map>
#include<set>
//#define DEBUG
#define RI register int
#define endl "\n"
using namespace std;
typedef long long ll;
//typedef __int128 lll;
const int N=200000+10;
const int M=100000+10;
const int MOD=1e9+7;
const double PI = acos(-1.0);
const double EXP = 1E-8;
const int INF = 0x3f3f3f3f;
int t,n,m,k,p,l,r,u,v;
int ans,cnt,flag,temp,sum;
int a,b,s[N];
char str;
struct node{};
int main()
{
#ifdef DEBUG
freopen("input.in", "r", stdin);
//freopen("output.out", "w", stdout);
#endif
//ios::sync_with_stdio(false);
//cin.tie(0);
//cout.tie(0);
//scanf("%d",&t);
//while(t--){
scanf("%d%d%d",&n,&b,&a);
int A=a,B=b;
for(int i=1;i<=n;i++){
scanf("%d",&s[i]);
}
for(int i=1;i<=n;i++){
if(s[i]){
if(A==a){
A--;
}else if(B){
B--;
A=min(A+1,a);
}else if (A) {
A--;
}else{
cout<<i-1<<endl;
return 0;
}
}else{
if(A||B){
if(A)A--;
else B--;
}else{
cout<<i-1<<endl;
return 0;
}
}
//cout<<B<<A<<endl;
}
cout<<n<<endl;
//}
#ifdef DEBUG
printf("Time cost : %lf s\n",(double)clock()/CLOCKS_PER_SEC);
#endif
//cout << "Hello world!" << endl;
return 0;
}