有两个序列a,b,大小都为n,序列元素的值任意整形数,无序;
要求:通过交换a,b中的元素,使[序列a元素的和]与[序列b元素的和]之间的差最小。
只能想到最傻的办法
import random
import time
def timeit(func):
def _deco(*args, **kwargs):
start = time.clock()
d = func(*args, **kwargs)
end = time.clock()
print "used time: %s" % str(end - start)
return d
return _deco
@timeit
def exchange(lsta, lstb):
suma = sum(lsta)
sumb = sum(lstb)
d = abs(suma-sumb)
if d == 0:
return d
bExchange = False
for indexa, ia in enumerate(lsta):
if d == 0:
break
for indexb, ib in enumerate(lstb):
tempd = abs((suma-ia+ib)-(sumb+ia-ib))
if tempd < d:
bExchange = True
tempindexa = indexa
tempindexb = indexb
d = tempd
if bExchange:
suma = suma - lsta[tempindexa] + lstb[tempindexb]
sumb = sumb - lstb[tempindexb] + lsta[tempindexa]
tempv = lsta[tempindexa]
lsta[tempindexa] = lstb[tempindexb]
lstb[tempindexb] = tempv
bExchange = False
return d
lsta = []
lstb = []
for i in range(1000):
lsta.append(random.randint(0, 1000000))
for i in range(1000):
lstb.append(random.randint(0, 1000000))
print exchange(lsta,lstb)
lsta = []
lstb = []
for i in range(10000):
lsta.append(random.randint(0, 1000000))
for i in range(10000):
lstb.append(random.randint(0, 1000000))
print exchange(lsta,lstb)
=======================================================
分别测试一千个数和一万个数的结果,一万个数时耗时真多。
>>>
used time: 0.223763605341
3
used time: 46.6022585932
1
>>>
阅读(952) | 评论(1) | 转发(0) |