-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy path1154D - Walking Robot.cpp
91 lines (84 loc) · 1.87 KB
/
1154D - Walking Robot.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
#include<bits/stdc++.h>
#define endl '\n'
#define ll long long int
#define loop(i,a,b) for(ll i=a;i<=b;++i)
#define pb push_back
#define F first
#define S second
#define mp make_pair
#define clr(x) x.clear()
#define MOD 1000000007
#define itoc(c) ((char)(((int)'0')+c))
#define vl vector<ll>
#define SZ(x) (x).size()
#define all(p) p.begin(),p.end()
#define mid(s,e) (s+(e-s)/2)
#define sv() ll t,n; scanf("%lld",&t);n=t; while(t--)
#define tcase() ll t,n; cin>>t;n=t; while(t--)
#define iscn(num) scanf("%d",&num);
#define scn(num) scanf("%lld",&num);
#define scn2(num,num2) scanf("%lld%lld",&num,&num2);
#define dbg(x) cerr <<"( "<<#x << " = " << x << " )"<<endl
using namespace std;
const ll INF = 2e18 + 99;
typedef pair<ll,ll> Pair;
typedef vector<bool> vec;;
void FAST_IO();
void ara_read(vec &v,ll n);
////////////////////////
int main()
{
ll n, b, a;
scanf("%lld%lld%lld",&n,&b,&a);
ll ca=a;
vector < bool > segments;
ara_read(segments,n);
ll can_pass=0;
for (auto x : segments){
if(x){
if(a==ca){
--a ;
can_pass++;
}
else if(b){
--b;
can_pass++;
++a;
a=min(ca, a);
}else if(a){
--a ;
can_pass++;
}else{
break ;
}
}else{
if(a){
--a;
can_pass++;
}else if(b){
--b;
can_pass++;
}
else{
break ;
}
}
}
printf("%lld\n",can_pass);
return 0;
}
void FAST_IO()
{
// ios_base::sync_with_stdio(0);
//cin.tie(NULL);
//cout.tie(NULL);
//cout.setf(ios::fixed);
//cout.precision(2);
}
void ara_read(vec &v,ll n){
ll temp;
for(ll i=0; i<n; i++){
scanf("%lld",&temp);
v.emplace_back(temp);
}
}