結果

問題 No.1195 数え上げを愛したい(文字列編)
ユーザー とりゐとりゐ
提出日時 2022-01-08 23:09:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,415 ms / 3,000 ms
コード長 1,581 bytes
コンパイル時間 320 ms
コンパイル使用メモリ 82,216 KB
実行使用メモリ 172,060 KB
最終ジャッジ日時 2024-11-14 09:52:15
合計ジャッジ時間 23,684 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,377 ms
137,164 KB
testcase_01 AC 1,381 ms
137,604 KB
testcase_02 AC 1,372 ms
136,884 KB
testcase_03 AC 482 ms
97,660 KB
testcase_04 AC 554 ms
100,804 KB
testcase_05 AC 1,415 ms
172,060 KB
testcase_06 AC 41 ms
54,492 KB
testcase_07 AC 40 ms
55,372 KB
testcase_08 AC 335 ms
88,972 KB
testcase_09 AC 1,363 ms
136,848 KB
testcase_10 AC 695 ms
105,356 KB
testcase_11 AC 1,272 ms
132,068 KB
testcase_12 AC 1,254 ms
130,692 KB
testcase_13 AC 1,139 ms
124,972 KB
testcase_14 AC 638 ms
102,932 KB
testcase_15 AC 692 ms
105,516 KB
testcase_16 AC 668 ms
105,500 KB
testcase_17 AC 331 ms
88,928 KB
testcase_18 AC 1,263 ms
130,848 KB
testcase_19 AC 1,261 ms
130,340 KB
testcase_20 AC 1,187 ms
126,188 KB
testcase_21 AC 1,278 ms
132,496 KB
testcase_22 AC 737 ms
108,052 KB
testcase_23 AC 40 ms
54,984 KB
testcase_24 AC 40 ms
54,116 KB
testcase_25 AC 41 ms
54,868 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

p, g = 998244353, 3
invg = pow(g, p-2, p)
W = [pow(g, (p - 1) >> i, p) for i in range(24)]
iW = [pow(invg, (p - 1) >> i, p) for i in range(24)]
 
def fft(k, f):
    for l in range(k)[::-1]:
        d = 1 << l
        u = 1
        for i in range(d):
            for j in range(i, 1 << k, 2*d):
                f[j], f[j+d] = (f[j] + f[j+d]) % p, u * (f[j] - f[j+d]) % p
            u = u * W[l+1] % p
 
def ifft(k, f):
    for l in range(k):
        d = 1 << l
        u = 1
        for i in range(d):
            for j in range(i, 1 << k, 2*d):
                f[j+d] *= u
                f[j], f[j+d] = (f[j] + f[j+d]) % p, (f[j] - f[j+d]) % p
            u = u * iW[l+1] % p
 
def convolve(a, b):
    n0, n1 = len(a), len(b)
    k = (max(n0, n1) - 1).bit_length() + 1
    n = 1 << k
    a = a + [0] * (n-n0)
    b = b + [0] * (n-n1)
    fft(k, a), fft(k, b)
    for i in range(n):
        a[i] = a[i] * b[i] % p
    ifft(k, a)
    invn = pow(n, p - 2, p)
    return [a[i] * invn % p for i in range(n0 + n1 - 1)]

import heapq

s=input()
n=len(s)
mod=998244353
cnt=[0]*26
for i in s:
  cnt[ord(i)-97]+=1
dp=[0]*(n+1)
dp[0]=1
A=[1]
f=[1]
finv=[1]
tmp=1
hq=[]
for i in range(1,n+1):
  tmp*=i
  tmp%=mod
  f.append(tmp)
  finv.append(pow(tmp,mod-2,mod))
for i in range(26):
  b=[1]
  for j in range(1,cnt[i]+1):
    b.append(finv[j])
  heapq.heappush(hq,(cnt[i]+1,b))
#print(a)
while len(hq)>1:
  sizea,a=heapq.heappop(hq)
  sizeb,b=heapq.heappop(hq)
  heapq.heappush(hq,(sizea+sizeb-1,convolve(a, b)))

a=hq[0][1]
ans=0
for i in range(1,n+1):
  ans+=a[i]*f[i]
  ans%=mod
print(ans)
0