結果

問題 No.720 行列のできるフィボナッチ数列道場 (2)
ユーザー convexineqconvexineq
提出日時 2021-03-15 18:08:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 50 ms / 2,000 ms
コード長 949 bytes
コンパイル時間 262 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 58,752 KB
最終ジャッジ日時 2024-04-24 20:48:35
合計ジャッジ時間 2,394 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
58,496 KB
testcase_01 AC 47 ms
58,496 KB
testcase_02 AC 47 ms
58,624 KB
testcase_03 AC 46 ms
58,496 KB
testcase_04 AC 45 ms
58,624 KB
testcase_05 AC 46 ms
58,496 KB
testcase_06 AC 46 ms
58,496 KB
testcase_07 AC 47 ms
58,496 KB
testcase_08 AC 48 ms
58,752 KB
testcase_09 AC 47 ms
58,496 KB
testcase_10 AC 45 ms
57,344 KB
testcase_11 AC 47 ms
58,368 KB
testcase_12 AC 48 ms
58,368 KB
testcase_13 AC 48 ms
58,624 KB
testcase_14 AC 50 ms
58,368 KB
testcase_15 AC 48 ms
58,496 KB
testcase_16 AC 47 ms
58,368 KB
testcase_17 AC 47 ms
58,368 KB
testcase_18 AC 49 ms
58,240 KB
testcase_19 AC 47 ms
58,496 KB
testcase_20 AC 42 ms
52,736 KB
testcase_21 AC 45 ms
58,240 KB
testcase_22 AC 46 ms
58,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def polymul(f,g):
    lf = len(f)
    lg = len(g)
    res = [0]*(lf+lg-1)
    for i in range(lf):
        for j in range(lg):
            res[i+j] += f[i]*g[j]
            res[i+j] %= MOD
    return res

def fps_nth_term(f,g,N):
    assert g[0] != 0
    while N:
        h = g[:]
        for i in range(1,len(g),2):
            h[i] = -h[i]
        f = polymul(f,h)[N%2:N+1:2]
        g = polymul(g,h)[:N+1:2]
        N //= 2
    return f[0]*pow(g[0],MOD-2,MOD)%MOD

# a[0],...,a[L-2] とL-1次特性多項式 g が与えられているL項間漸化式の第N項
def rec_nth_term(a,g,N):
    L = len(g)
    assert len(a) == L-1
    f = polymul(a,g)[:L-1]
    return fps_nth_term(f,g,N)

MOD = 10**9+7
n,m = map(int,input().split())
fibm = rec_nth_term([0,1],[1,-1,-1],m)
fib2m = rec_nth_term([0,1],[1,-1,-1],2*m)
x = rec_nth_term([2,1],[1,-1,-1],m)
a,b,c = 1, -x, 1-m%2*2
ans = rec_nth_term([0,fibm,(fibm+fib2m)%MOD],[a,b-a,c-b,-c],n)
print(ans%MOD)
0