Codeforces 1154D - Walking Robot - [贪心]
Posted dilthey
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Codeforces 1154D - Walking Robot - [贪心]相关的知识,希望对你有一定的参考价值。
题目链接:https://codeforces.com/contest/1154/problem/D
题解:
贪心思路,没有太阳的时候,优先用可充电电池走,万不得已才用普通电池走。有太阳的时候,如果可充电电池能够充一格电,就用普通电池跑(让可充电池充电),否则就用可充电电池走。
AC代码:
#include<bits/stdc++.h> using namespace std; const int maxn=2e5+10; int n,a,b; bool s[maxn]; int main() { cin>>n>>a>>b; for(int i=1;i<=n;i++) scanf("%d",&s[i]); int cnt=0, x=a, y=b; for(int i=1;i<=n;i++) { if(s[i]==0) //no sun { if(y>0) y--, cnt++; else if(x>0) x--, cnt++; else break; } else { if(x>0 && y<b) x--, y++, cnt++; else if(y>0) y--, cnt++; else break; } } cout<<cnt<<endl; }
以上是关于Codeforces 1154D - Walking Robot - [贪心]的主要内容,如果未能解决你的问题,请参考以下文章