結果

問題 No.1356 Split Tile2
ユーザー chineristACchineristAC
提出日時 2021-01-17 15:57:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 905 ms / 2,000 ms
コード長 3,250 bytes
コンパイル時間 1,636 ms
コンパイル使用メモリ 86,324 KB
実行使用メモリ 276,284 KB
最終ジャッジ日時 2023-08-19 22:18:36
合計ジャッジ時間 13,627 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
80,572 KB
testcase_01 AC 129 ms
82,340 KB
testcase_02 AC 102 ms
81,584 KB
testcase_03 AC 106 ms
81,568 KB
testcase_04 AC 101 ms
81,492 KB
testcase_05 AC 101 ms
81,420 KB
testcase_06 AC 100 ms
81,412 KB
testcase_07 AC 100 ms
81,196 KB
testcase_08 AC 102 ms
81,196 KB
testcase_09 AC 102 ms
81,492 KB
testcase_10 AC 105 ms
81,296 KB
testcase_11 AC 100 ms
81,320 KB
testcase_12 AC 156 ms
101,488 KB
testcase_13 AC 208 ms
125,208 KB
testcase_14 AC 905 ms
276,284 KB
testcase_15 AC 902 ms
276,224 KB
testcase_16 AC 535 ms
216,256 KB
testcase_17 AC 534 ms
216,212 KB
testcase_18 AC 111 ms
82,248 KB
testcase_19 AC 532 ms
216,428 KB
testcase_20 AC 534 ms
216,460 KB
testcase_21 AC 530 ms
216,248 KB
testcase_22 AC 208 ms
124,900 KB
testcase_23 AC 529 ms
216,452 KB
testcase_24 AC 527 ms
215,980 KB
testcase_25 AC 308 ms
152,412 KB
testcase_26 AC 531 ms
216,356 KB
testcase_27 AC 307 ms
152,456 KB
testcase_28 AC 534 ms
217,792 KB
testcase_29 AC 532 ms
216,152 KB
testcase_30 AC 310 ms
152,328 KB
testcase_31 AC 127 ms
82,860 KB
testcase_32 AC 904 ms
276,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353
omega = pow(3,119,mod)
rev_omega = pow(omega,mod-2,mod)

N = 2*10**5
g1 = [1]*(N+1) # 元テーブル
g2 = [1]*(N+1) #逆元テーブル
inv = [1]*(N+1) #逆元テーブル計算用テーブル

for i in range( 2, N + 1 ):
    g1[i]=( ( g1[i-1] * i ) % mod )
    inv[i]=( ( -inv[mod % i] * (mod//i) ) % mod )
    g2[i]=( (g2[i-1] * inv[i]) % mod )
inv[0]=0

def _ntt(f,L,reverse=False):
    F=[f[i] for i in range(L)]
    n = L.bit_length() - 1
    base = omega
    if reverse:
        base = rev_omega

    if not n:
        return F

    size = 2**n
    wj = pow(base,2**22,mod)
    res = [0]*2**n

    for i in range(n,0,-1):
        use_omega = pow(base,2**(22+i-n),mod)
        res = [0]*2**n
        size //= 2
        w = 1
        for j in range(0,L//2,size):
            for a in range(size):
                res[a+j] = (F[a+2*j] + w * F[a+size+2*j]) % mod
                t = (w * wj) % mod
                res[L//2+a+j] = (F[a+2*j] + t * F[a+size+2*j]) % mod
            w = (w * use_omega) % mod
        F = res

    return res

def ntt(f,L=0):
    l = len(f)
    if not L:
        L = 1<<((l-1).bit_length())
    while len(f)<L:
        f.append(0)
    f=f[:L]
    F = _ntt(f,L)
    return F

def intt(f,L=0):
    l = len(f)
    if not L:
        L = 1<<((l-1).bit_length())
    while len(f)<L:
        f.append(0)
    f=f[:L]
    F = _ntt(f,L,reverse=True)
    inv = pow(L,mod-2,mod)
    for i in range(L):
        F[i] *= inv
        F[i] %= mod
    return F

def convolve(f,g,limit):
    l = len(f)+len(g)-1
    L = 1<<((l-1).bit_length())

    F = ntt(f,L)
    G = ntt(g,L)

    H = [(F[i] * G[i]) % mod for i in range(L)]

    h = intt(H,L)

    return h[:limit]

def inverse(f,limit):
    assert(f[0]!=0)
    l = len(f)
    L = 1<<((l-1).bit_length())
    n = L.bit_length()-1
    f = f[:L]
    f+=[0]*(L-len(f))

    res = [pow(f[0],mod-2,mod)]
    for i in range(1,n+1):
        h = convolve(res,f[:2**i],2**i)
        h = [(-h[i]) % mod for i in range(2**i)]
        h[0] = (h[0]+2) % mod
        res = convolve(res,h,2**i)
    return res[:limit]

def integral(f,limit):
    res = [0]+[(f[i] * inv[i+1]) % mod for i in range(len(f)-1)]
    return res[:limit]

def diff(f,limit):
    res = [(f[i+1] * (i+1)) % mod for i in range(len(f)-1)]+[0]
    return res[:limit]

def log(f,limit):
    res = convolve(diff(f,limit),inverse(f,limit),limit)
    return integral(res,limit)

def exp(f,limit):
    l = len(f)
    L = 1<<((l-1).bit_length())
    n = L.bit_length()-1
    f = f[:L]
    f+=[0]*(L-len(f))

    res = [1]
    for i in range(1,n+1):
        res += [0]*2**(i-1)
        g = log(res,2**i)
        h = [(f[j]-g[j])%mod for j in range(2**i)]
        h[0] = (h[0]+1) % mod
        res =convolve(res,h,2**i)
    return res[:limit]

def poly_pow_exp(f,k,limit):
    l = len(f)
    L = 1<<((l-1).bit_length())
    n = L.bit_length()-1
    f = f[:L]
    f+=[0]*(L-len(f))

    g = log(f,limit)
    g = [(k * g[i]) % mod for i in range(len(g))]
    h = exp(g,limit)
    return h[:limit]

N = int(input())
f = [g1[i+1] for i in range(N)]
#print(f)
f = inverse(f,N)
for i in range(N):
    f[i] = (-f[i]) %mod

f[0] += 1
f[0] %= mod

res = 0
for i in range(1,N):
    res += f[i]
    res %= mod

#print(f)
print(res)
0