Created
May 31, 2014 16:36
-
-
Save kusano/99885a0f6baeb5a06ae5 to your computer and use it in GitHub Desktop.
Google Code Jam 2014 Round 2 D Trie Sharding
This file contains hidden or 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
import itertools | |
def trie(S): | |
X = {} | |
n = 1 | |
for s in S: | |
p = X | |
for c in s: | |
if c not in p: | |
p[c] = {} | |
n += 1 | |
p = p[c] | |
return n | |
for test in range(input()): | |
M, N = map(int, raw_input().split()) | |
S = [raw_input() for _ in range(M)] | |
X, Y = 0, 0 | |
for P in itertools.product(range(N), repeat=M): | |
T = [[] for _ in range(N)] | |
for i in range(M): | |
T[P[i]] += [S[i]] | |
if min(len(t) for t in T)==0: | |
continue | |
x = sum(trie(t) for t in T) | |
if x>X: | |
X = x | |
Y = 0 | |
if x==X: | |
Y += 1 | |
print "Case #%s: %s %s" % (test+1, X, Y) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment