2023-09-02力扣每日一题

链接:

2511. 最多可以摧毁的敌人城堡数目

题意和解

阅读理解题,要从1到-1或-1到1,中间只能有0,求最多能有多少0

实际代码:

#include
using namespace std;
int captureForts(vector& forts)
{
	int ans=0,after=1E8+7;
	bool Left=false;
	for(int i=0;i=0?ans:0;
}
int main()
{
	vector forts;int fort;
	while(cin>>fort) forts.push_back(fort);
	int ans=captureForts(forts);
	cout<

限制:

  • 1 <= forts.length <= 1000
  • -1 <= forts[i] <= 1

你可能感兴趣的:(力扣每日一题,leetcode)