Задание:
Given is array containing N numbers, A[0], A[1], ... A[N-1]. Compute the array B of length N, such that B[i] = A[0]*A[1]*...A[i-1]*A[i+1]...*A[N-1]. Algorithm should work in time O(N), memory O(1) and can't use division.
Решение 1:Given is array containing N numbers, A[0], A[1], ... A[N-1]. Compute the array B of length N, such that B[i] = A[0]*A[1]*...A[i-1]*A[i+1]...*A[N-1]. Algorithm should work in time O(N), memory O(1) and can't use division.
Конечно тут не чисто O(N), так как за логарифмом и экспонентой вряд ли O(1).
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from math import log, exp | |
def solve(a): | |
p = reduce(lambda x, y: x*y, a) | |
return [int(round( p * exp(-log(x)) )) for x in a] |
А тут чистенько все вроде.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def solve(a): | |
temp = 1 | |
b = [] | |
for x in a: | |
temp *= x | |
b.append(temp) | |
prev = 1 | |
for i in xrange(len(a) - 2, -1, -1): | |
b[i + 1] = prev * b[i] | |
prev *= a[i + 1] | |
b[0] = prev | |
return b |
No comments:
Post a Comment