I don't know if someone has noticed this but the input file for this problem was kind of special in the sense that it didn't have the solution with repeated digits. For eg if the input file was:
12
21
Then solution had to be: 121
In that case solving this problem is difficult than with assumption that digits don't repeat.
The problem is same finding Shortest common super-sequence of all the 50 3 digit codes.
Although my solution does exploit the fact that digits don't repeat for the current instance.
I solved this problem using topological sort on the graph of digits and ignoring 4,5 since they don't appear in the file.
G = [[False]*10 for i in range(10)]
def update_graph(code):
i = 0
L = len(code)
for i in range(L):
for j in range(i+1,L):
a = ord(code[i])-ord('0')
b = ord(code[j])-ord('0')
if a == b: continue
G[a][b] = True # a comes before b
def topo_sort():
cnt = 0
done = [False]*10
final_code = []
# 4,5 are not present in the file.
done[4] = True
done[5] = True
while cnt < 8:
for i in xrange(10):
if done[i]: continue
no_in = True
for j in xrange(10):
if G[j][i] and not done[j]:
no_in = False
break
if no_in:
current = i
break
final_code.append(current)
done[current] = True
cnt += 1
final_code = ''.join( map(str, final_code) )
print final_code
def main():
f = open('keylog.txt', 'r')
for line in f.xreadlines():
update_graph(line.strip())
topo_sort()
if __name__ == '__main__':
main()