本帖最后由 TJBEST 于 2020-3-15 20:04 编辑
测试了一下,比较慢 先这样,我再想想有什么好办法。测试1000个数接近秒级 不甚理想。
def fun352(arr):
M = len(arr)
if M == 1:
return True
dictionary = dict()#存储形式 (起始,终止):(先手,后手) 起始终止 和切片一致
for index in range(0,M-1):
A = arr[index]
B = arr[index+1]
if A < B:
dictionary[(index,index+2)]=(B,A)
else:
dictionary[(index,index+2)]=(A,B)
for index in range(3,M+1):
for inner in range(0,M+1-index):
choose1 = arr[inner]
before1 = dictionary[(inner+1,inner+index)][0]
after1 = dictionary[(inner+1,inner+index)][1]
result1 = (choose1+after1,before1)
choose2 = arr[inner+index-1]
before2 = dictionary[(inner,inner+index-1)][0]
after2 = dictionary[(inner,inner+index-1)][1]
result2 = (choose1+after1,before1)
dictionary[(inner,inner+index)] = max([result1,result2])
if dictionary[(0,M)][0]>dictionary[(0,M)][1]:
return True
else:
return False
|