标签:组成 log scripts name str include nlog 最大连续 fonts
给定K个整数组成的序列{ N?1??, N?2??, ..., N?K?? },“连续子列”被定义为{ N?i??, N?i+1??, ..., N?j?? },其中 1。“最大子列和”则被定义为所有连续子列元素的和中最大者。例如给定序列{ -2, 11, -4, 13, -5, -2 },其连续子列{ 11, -4, 13 }有最大的和20。现要求你编写程序,计算给定整数序列的最大子列和。
本题旨在测试各种不同的算法在各种数据情况下的表现。各组测试数据特点如下:
1 #include<iostream> 2 using namespace std; 3 int maxsum(int a[],int l,int r){ 4 5 if(l==r){ 6 if(a[l]>0) return a[l]; 7 return 0; 8 } 9 int m=(l+r)/2; 10 11 //左边 12 int lmax=0; 13 int lsum=0; 14 for(int i= m;i>=l;i--){ 15 lsum +=a[i]; 16 if(lsum>lmax){ 17 lmax=lsum; 18 } 19 } 20 //右边 21 int rmax=0; 22 int rsum=0; 23 for(int i=m+1;i<=r;i++){ 24 rsum+=a[i]; 25 if(rsum>rmax){ 26 rmax=rsum; 27 } 28 29 } 30 31 32 int sum1=maxsum(a,l,m); 33 int sum2=maxsum(a,m+1,r); 34 35 int sum3=lmax+rmax; 36 if(sum3<lmax) 37 sum3=lmax; 38 if(sum3<rmax) 39 sum3=rmax; 40 int max=lmax>rmax?lmax:rmax; 41 int ans=sum3>max?sum3:max; 42 return ans; 43 44 } 45 int main(){ 46 int n,a[100000]; 47 cin>>n; 48 for(int i=0;i<n;i++){ 49 cin>>a[i]; 50 } 51 int ans=maxsum(a,0,n-1); 52 cout<<ans;
标签:组成 log scripts name str include nlog 最大连续 fonts
原文地址:https://www.cnblogs.com/ouyuanyu/p/13765425.html