結果

問題 No.1073 無限すごろく
ユーザー vwxyzvwxyz
提出日時 2024-08-15 06:50:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 55 ms / 2,000 ms
コード長 2,494 bytes
コンパイル時間 476 ms
コンパイル使用メモリ 82,848 KB
実行使用メモリ 62,848 KB
最終ジャッジ日時 2024-08-15 06:50:52
合計ジャッジ時間 3,468 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
59,008 KB
testcase_01 AC 43 ms
59,136 KB
testcase_02 AC 46 ms
61,184 KB
testcase_03 AC 42 ms
58,624 KB
testcase_04 AC 42 ms
58,880 KB
testcase_05 AC 42 ms
58,880 KB
testcase_06 AC 42 ms
59,136 KB
testcase_07 AC 42 ms
59,136 KB
testcase_08 AC 44 ms
59,008 KB
testcase_09 AC 43 ms
59,264 KB
testcase_10 AC 42 ms
59,008 KB
testcase_11 AC 43 ms
59,136 KB
testcase_12 AC 43 ms
59,136 KB
testcase_13 AC 47 ms
61,184 KB
testcase_14 AC 47 ms
61,288 KB
testcase_15 AC 47 ms
61,056 KB
testcase_16 AC 49 ms
61,184 KB
testcase_17 AC 47 ms
61,440 KB
testcase_18 AC 50 ms
61,056 KB
testcase_19 AC 47 ms
61,312 KB
testcase_20 AC 47 ms
61,312 KB
testcase_21 AC 46 ms
61,312 KB
testcase_22 AC 47 ms
61,824 KB
testcase_23 AC 50 ms
62,464 KB
testcase_24 AC 48 ms
62,336 KB
testcase_25 AC 49 ms
62,592 KB
testcase_26 AC 49 ms
62,464 KB
testcase_27 AC 50 ms
62,336 KB
testcase_28 AC 49 ms
62,464 KB
testcase_29 AC 50 ms
62,720 KB
testcase_30 AC 55 ms
62,720 KB
testcase_31 AC 50 ms
62,464 KB
testcase_32 AC 49 ms
62,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def Berlekamp_Massey(A,mod):
    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):
    deno=[1]+[-c for c in Berlekamp_Massey(A,mod)]
    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] if poly_nume else 0

mod=10**9+7
inve6=pow(6,mod-2,mod)
P=[0]*13
dp=[0]*100
dp[0]=1
for c in range(15):
    prev=dp
    dp=[0]*100
    for x in range(1,7):
        for i in range(x,100):
            dp[i]+=prev[i-x]*inve6%mod
            dp[i]%=mod
    for i in range(13):
        P[i]+=dp[i]

N=int(input())
ans=BMBM(P,N,mod)
print(ans)
0