I'm solving a problem which has some time and memory constraints, and unfortunately this is failing the time constraints.
I'm fairly new to Python, so any feedback on faster/better methods is appreciated.
This is the problem the program is trying to solve:
Define the similarity of two strings A & B as the length of the longest common prefix that they share. i.e the similarity of AAAB and AABCAAAB is 2.
The program should output the sum of similarities of the input string with all of its suffixes. i.e for AAAB, it should output
similarity(AAAB,AAAB) + similarity(AAAB,AAB) + similarity(AAAB,AB) +similarity(AAAB,B) = 4 + 2 + 1 + 0 = 7
The first line of input is the number of strings to be entered, and each subsequent line contains a string to be processed.
from array import array
n = int(sys.stdin.readline())
A = [0] * n #List of answers
for i in range(1,n+1):
string = sys.stdin.readline().strip()
A[i-1] = len(string)
for j in range(1, len(string)):
substr = string[j:len(string)]
sum = 0
for k in range(0, len(substr)):
if substr[k] != string[k]:
break
else:
sum += 1
A[i-1] += sum
for i,d in enumerate(A):
print d
rangetoxrange. Is there any good reason you need to read from input line-by-line rather than in one big chunk? – wim Jan 5 '12 at 9:40len(string)changes between two calls (although it doesn't in this case). – Ankit Soni Jan 5 '12 at 11:45