计算最小数组环
Posted MegauBing
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了计算最小数组环相关的知识,希望对你有一定的参考价值。
队友:
一、分析
先将一个长度为n的数组扩大两倍,即在这个数组后加一个一样的数组,然后依次取长度为n,数组开头元素为原数组的单元构成n个数组。对n个数组依次进行求最大子数组和,然后在这一堆和里找出最大和。
二、代码
str1="4 -2 3 -1 -1 10" print"请输入一个数组" str1=raw_input() counter_1=0 str2=str1+" "+str1 str2=str2.split() #print str2 counter_1=0 for i in str2: counter_1=counter_1+1 counter_1=counter_1/2 #print counter_1 answer_array=[0]*counter_1 for j in range(0,counter_1): str3=str2[j:j+counter_1] #print"str3",str3 sum_record_unexcept=0 str3[0]=int(str3[0]) sum_constant_add=0 for i in str3: i=int(i) sum_record_unexcept=max(sum_record_unexcept,sum_constant_add) sum_constant_add=max(sum_constant_add+i,i) answer_array[j]=max(sum_constant_add,sum_record_unexcept) #print "answer_array[i]",answer_array[j] #print"answer",answer_array maxment=answer_array[0] for i in answer_array: if(maxment<i): maxment=i print"最大值为",maxment
三、运行结果
以上是关于计算最小数组环的主要内容,如果未能解决你的问题,请参考以下文章
$bzoj1027-JSOI2007$ 合金 计算几何 最小环
HDU 4370 0 or 1(spfa+思维建图+计算最小环)