結果

問題 No.720 行列のできるフィボナッチ数列道場 (2)
ユーザー vwxyzvwxyz
提出日時 2024-04-06 03:56:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 59 ms / 2,000 ms
コード長 2,348 bytes
コンパイル時間 352 ms
コンパイル使用メモリ 82,668 KB
実行使用メモリ 80,640 KB
最終ジャッジ日時 2024-10-01 03:40:34
合計ジャッジ時間 2,663 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
67,328 KB
testcase_01 AC 50 ms
70,912 KB
testcase_02 AC 53 ms
75,648 KB
testcase_03 AC 58 ms
80,256 KB
testcase_04 AC 59 ms
80,384 KB
testcase_05 AC 50 ms
70,912 KB
testcase_06 AC 51 ms
71,168 KB
testcase_07 AC 43 ms
60,160 KB
testcase_08 AC 42 ms
60,672 KB
testcase_09 AC 47 ms
64,896 KB
testcase_10 AC 44 ms
61,312 KB
testcase_11 AC 47 ms
68,352 KB
testcase_12 AC 44 ms
63,232 KB
testcase_13 AC 56 ms
80,256 KB
testcase_14 AC 52 ms
73,856 KB
testcase_15 AC 51 ms
72,320 KB
testcase_16 AC 53 ms
73,984 KB
testcase_17 AC 50 ms
70,656 KB
testcase_18 AC 43 ms
62,080 KB
testcase_19 AC 57 ms
80,256 KB
testcase_20 AC 36 ms
52,736 KB
testcase_21 AC 43 ms
63,488 KB
testcase_22 AC 56 ms
80,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def Berlekamp_Massey(A):
    n = len(A)
    B, C = [1], [1]
    l, m, p = 0, 1, 1
    for i in range(n):
        d = A[i]
        for j in range(1, l + 1):
            d += C[j] * A[i - j]
            d %= mod
        if d == 0:
            m += 1
            continue
        T = C.copy()
        q = pow(p, mod - 2, mod) * d % mod
        if len(C) < len(B) + m:
            C += [0] * (len(B) + m - len(C))
        for j, b in enumerate(B):
            C[j + m] -= q * b
            C[j + m] %= mod
        if 2 * l <= i:
            B = T
            l, m, p = i + 1 - l, 1, d
        else:
            m += 1
    res = [-c % mod for c in C[1:]]
    return res

def BMBM(A,N,mod=0):
    deno=[1]+[-c for c in Berlekamp_Massey(A)]
    nume=[0]*(len(deno)-1)
    for i in range(len(A)):
        for j in range(len(deno)):
            if i+j<len(nume):
                nume[i+j]+=A[i]*deno[j]
                nume[i+j]%=mod
    return Bostan_Mori(nume,deno,N,mod=mod)

def Bostan_Mori(poly_nume,poly_deno,N,mod=0,convolve=None):
    #if type(poly_nume)==Polynomial:
    #    poly_nume=poly_nume.polynomial
    #if type(poly_deno)==Polynomial:
    #    poly_deno=poly_deno.polynomial
    if convolve==None:
        def convolve(poly_nume,poly_deno):
            conv=[0]*(len(poly_nume)+len(poly_deno)-1)
            for i in range(len(poly_nume)):
                for j in range(len(poly_deno)):
                    x=poly_nume[i]*poly_deno[j]
                    if mod:
                        x%=mod
                    conv[i+j]+=x
            if mod:
                for i in range(len(conv)):
                    conv[i]%=mod
            return conv
    while N:
        poly_deno_=[-x if i%2 else x for i,x in enumerate(poly_deno)]
        if N%2:
            poly_nume=convolve(poly_nume,poly_deno_)[1::2]
        else:
            poly_nume=convolve(poly_nume,poly_deno_)[::2]
        poly_deno=convolve(poly_deno,poly_deno_)[::2]
        if mod:
            for i in range(len(poly_nume)):
                poly_nume[i]%=mod
            for i in range(len(poly_deno)):
                poly_deno[i]%=mod
        N//=2
    return poly_nume[0]

N,M=map(int,input().split())
F=[0,1]
mod=10**9+7
for i in range(2,10*M+1):
    F.append((F[-1]+F[-2])%mod)
poly=[sum(F[i*M] for i in range(n)) for n in range(1,12)]
ans=BMBM(poly,N,mod)
print(ans)
0