【发布时间】:2016-06-26 21:52:21
【问题描述】:
我有三个数组,h1, h2, h3。
n1, n2,n3 决定数组的长度。
我必须从 1 个或多个数组中删除输入,以便所有数组的最终总和应该相同。
###Inputs
n1,n2, n3 = 5, 3, 4
h1 = 3 2 1 1 1 # 5 elements
h2 = 4 3 2 # 3 elements
h3 = 1 1 4 1 # 4 elements
如果我们在上面的数组中看到
sum of h1 = 8
sum of h2 = 9
sum of h3 = 7
数组开头的deletion should happen。
所以在这里,如果我删除,
3 from h1 (as h1[0])
4 from h2 (as h2[0])
1 and 1 from h3 (as h3[0] and h3[1])
现在所有(Sum of h1 containts, h2 containts, h3 containts) 的总和将变为5。这是我的最终答案。
当输入列表很小时,下面的代码表现良好。但是当输入列表变为n1 = 100000, n2 = 200000, n3 = 300000。此代码需要大量时间来执行。我怎样才能减少时间。
from collections import *
n1,n2,n3 = input().strip().split(' ')
n1,n2,n3 = [int(n1),int(n2),int(n3)]
h1 = [int(h1_temp) for h1_temp in input().strip().split(' ')]
h2 = [int(h2_temp) for h2_temp in input().strip().split(' ')]
h3 = [int(h3_temp) for h3_temp in input().strip().split(' ')]
#print(n1, n2, n3, h1, h2, h3)
h1_tot, h2_tot, h3_tot = sum(h1), sum(h2), sum(h3)
#print(h1_tot, h2_tot, h3_tot)
arr = [h1_tot, h2_tot, h3_tot]
done = False
while len(Counter(arr)) != 1:
if len(Counter(arr)) == 3:
if arr.index(min(Counter(arr))) == 0:
h3.remove(h3[0])
h2.remove(h2[0])
elif arr.index(min(Counter(arr))) == 1:
h3.remove(h3[0])
h1.remove(h1[0])
else:
h1.remove(h1[0])
h2.remove(h2[0])
if len(Counter(arr)) == 2:
index = arr.index(min(arr))
if arr[0] == arr[1] and index == 2:
h1.remove(h1[0])
h2.remove(h2[0])
elif arr[1] == arr[2] and index == 0:
h2.remove(h2[0])
h3.remove(h3[0])
elif arr[0] == arr[2] and index == 1:
h1.remove(h1[0])
h3.remove(h3[0])
if arr[0] == arr[1] and (index == 0 or index == 1):
h3.remove(h3[0])
elif arr[1] == arr[2] and (index == 2 or index == 1):
h1.remove(h1[0])
elif arr[0] == arr[2] and (index == 0 or index == 2):
h2.remove(h2[0])
h1_tot, h2_tot, h3_tot = sum(h1), sum(h2), sum(h3)
arr = [h1_tot, h2_tot, h3_tot]
print(arr[0])
【问题讨论】:
标签: arrays algorithm python-3.x