結果

問題 No.562 超高速一人かるた small
ユーザー mkawa2mkawa2
提出日時 2021-11-12 18:39:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,205 ms / 3,000 ms
コード長 2,400 bytes
コンパイル時間 211 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 100,264 KB
最終ジャッジ日時 2024-11-25 07:22:15
合計ジャッジ時間 25,956 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
77,180 KB
testcase_01 AC 59 ms
77,164 KB
testcase_02 AC 59 ms
77,112 KB
testcase_03 AC 59 ms
77,132 KB
testcase_04 AC 73 ms
84,368 KB
testcase_05 AC 76 ms
85,468 KB
testcase_06 AC 59 ms
76,584 KB
testcase_07 AC 98 ms
92,016 KB
testcase_08 AC 319 ms
92,244 KB
testcase_09 AC 2,024 ms
99,652 KB
testcase_10 AC 558 ms
93,584 KB
testcase_11 AC 1,028 ms
95,456 KB
testcase_12 AC 288 ms
92,684 KB
testcase_13 AC 74 ms
85,384 KB
testcase_14 AC 1,913 ms
99,668 KB
testcase_15 AC 2,088 ms
99,960 KB
testcase_16 AC 2,205 ms
99,576 KB
testcase_17 AC 1,884 ms
99,592 KB
testcase_18 AC 1,942 ms
99,328 KB
testcase_19 AC 1,989 ms
99,720 KB
testcase_20 AC 1,992 ms
99,400 KB
testcase_21 AC 1,918 ms
99,840 KB
testcase_22 AC 2,113 ms
100,264 KB
testcase_23 AC 2,029 ms
100,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
int1 = lambda x: int(x)-1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
# inf = 18446744073709551615
inf = 4294967295
md = 10**9+7
# md = 998244353

def add(s, i):
    u = 0
    for c in s:
        if c not in trie[u]:
            trie[u][c] = len(trie)
            trie.append({})
            vv.append(0)
        u = trie[u][c]
        vv[u] |= 1 << i

    trie[u]["end"] = s

def search(s):
    bb, dd = [], []
    u = 0
    d = 0
    now = -1
    for c in s:
        u = trie[u][c]
        d += 1
        if vv[u] != now:
            now = vv[u]
            bb.append(now)
            dd.append(d)
    return bb, dd

def nHr(hn, hr):
    return nCr(hn+hr-1, hr-1)

def nPr(com_n, com_r):
    if com_r < 0: return 0
    if com_n < com_r: return 0
    return fac[com_n]*ifac[com_n-com_r]%md

def nCr(com_n, com_r):
    if com_r < 0: return 0
    if com_n < com_r: return 0
    return fac[com_n]*ifac[com_r]%md*ifac[com_n-com_r]%md

# 準備
n_max = 200005
fac = [1]
for i in range(1, n_max+1): fac.append(fac[-1]*i%md)
ifac = [1]*(n_max+1)
ifac[n_max] = pow(fac[n_max], md-2, md)
for i in range(n_max-1, 1, -1): ifac[i] = ifac[i+1]*(i+1)%md

trie = [{}]
vv = [0]

n = II()
ss = [SI()+"@" for _ in range(n)]

for i, s in enumerate(ss): add(s, i)
bbs, dds = [], []
for i, s in enumerate(ss):
    bb, dd = search(s)
    bbs.append(bb)
    dds.append(dd)

popcnt = lambda x: bin(x).count("1")

dp = [0]*(1 << n)
ans = [0]*(n+1)
for bit in range((1 << n)-1)[::-1]:
    k = n-popcnt(bit)
    for i, s in enumerate(ss):
        if bit >> i & 1: continue
        nbit = bit | 1 << i
        cost = 0
        for b, d in zip(bbs[i], dds[i]):
            if bit & b == 0:
                cost = d
                break
        dp[bit] += dp[nbit]+cost
    dp[bit] = dp[bit]*pow(k, md-2, md)%md
    ans[k] += dp[bit]

for k in range(1, n+1):
    ans[k] *= fac[k]
    ans[k] %= md

print(*ans[1:], sep="\n")
0