标签:
现有n个数字a1,a2...an,其值均为0或1。
要求对着n个数中连续的若干个数进行一次取反(0->1,1->0),求所能得到的最多的1的数目。
第一行,n
第二行,n个数
能得到的最多的1的数目
4
1 0 0 1
4
1 ≤ n ≤ 100
思路
枚举左右端点,同时记录下该区间内数字翻转后的值
代码
#include<cstdio> #include<algorithm> using namespace std; bool a[101]; int n,ans,s,tot; int main() { int i,j,k; scanf("%d",&n); for(i=1;i<=n;i++) scanf("%d",&a[i]),ans+=a[i]; for(i=1;i<=n;i++) for(j=i;j<=n;j++) { s=0; for(k=i;k<=j;k++) { if(a[k]) s--; else s++; } tot=max(s,tot); } printf("%d",ans+tot); return 0; }
标签:
原文地址:http://www.cnblogs.com/jyhywh/p/5974788.html