結果

問題 No.1068 #いろいろな色 / Red and Blue and more various colors (Hard)
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-03-22 22:52:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 3,164 ms / 3,500 ms
コード長 1,513 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 230,544 KB
最終ジャッジ日時 2024-10-10 17:16:24
合計ジャッジ時間 60,064 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,400 KB
testcase_01 AC 37 ms
53,496 KB
testcase_02 AC 36 ms
53,024 KB
testcase_03 AC 197 ms
79,272 KB
testcase_04 AC 189 ms
78,956 KB
testcase_05 AC 195 ms
79,292 KB
testcase_06 AC 183 ms
79,004 KB
testcase_07 AC 183 ms
78,996 KB
testcase_08 AC 189 ms
79,212 KB
testcase_09 AC 193 ms
79,108 KB
testcase_10 AC 159 ms
77,952 KB
testcase_11 AC 183 ms
78,904 KB
testcase_12 AC 151 ms
77,892 KB
testcase_13 AC 3,007 ms
230,236 KB
testcase_14 AC 3,012 ms
229,976 KB
testcase_15 AC 3,008 ms
230,284 KB
testcase_16 AC 2,996 ms
230,148 KB
testcase_17 AC 3,021 ms
229,980 KB
testcase_18 AC 3,001 ms
230,228 KB
testcase_19 AC 3,014 ms
230,084 KB
testcase_20 AC 3,025 ms
230,236 KB
testcase_21 AC 3,015 ms
230,400 KB
testcase_22 AC 3,164 ms
230,024 KB
testcase_23 AC 3,089 ms
230,036 KB
testcase_24 AC 3,043 ms
229,980 KB
testcase_25 AC 3,021 ms
230,096 KB
testcase_26 AC 3,021 ms
230,048 KB
testcase_27 AC 3,017 ms
230,544 KB
testcase_28 AC 3,026 ms
229,692 KB
testcase_29 AC 3,025 ms
222,756 KB
testcase_30 AC 3,012 ms
223,216 KB
testcase_31 AC 36 ms
52,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353
g = 3
ginv = 332748118
W = [pow(g, (mod-1)>>i, mod) for i in range(24)]
Winv = [pow(ginv, (mod-1)>>i, mod) for i in range(24)]

def fft(k,f):
    for l in range(k,0,-1):
        d = 1 << l - 1
        U = [1]
        for i in range(d):
            U.append(U[-1]*W[l]%mod)
        for i in range(1<<k - l):
            for j in range(d):
                s = i*2*d + j
                f[s],f[s+d] = (f[s]+f[s+d])%mod, U[j]*(f[s]-f[s+d])%mod

def fftinv(k,f):
    for l in range(1,k+1):
        d = 1 << l - 1
        for i in range(1<<k - l):
            u = 1
            for j in range(i*2*d, (i*2+1)*d):
                f[j+d] *= u
                f[j],f[j+d] = (f[j]+f[j+d])%mod, (f[j]-f[j+d])%mod
                u *= Winv[l] 
                u %= mod

def convolution(a,b):
    le = len(a)+len(b)-1
    k = le.bit_length()
    n = 1 << k
    a = a + [0]*(n-len(a))
    b = b + [0]*(n-len(b))
    fft(k,a)
    fft(k,b)
    for i in range(n):
        a[i] *= b[i]
        a[i] %= mod
    fftinv(k,a)
    
    ninv = pow(n,mod-2,mod)
    for i in range(le):
        a[i] *= ninv
        a[i] %= mod
    
    return a[:le]


n,q = map(int,input().split())
A = list(map(int,input().split()))
B = list(map(int,input().split()))
calA = [[a-1,1] for a in A]
while len(calA) > 1:
    ncalA = []
    if len(calA) & 1:
        ncalA.append(calA.pop())
    for i in range(0,len(calA)//2):
        ncalA.append(convolution(calA[2*i],calA[2*i+1]))
    calA = ncalA
dp = calA[0]
for b in B:
    print(dp[b])
0