結果

問題 No.194 フィボナッチ数列の理解(1)
ユーザー yuppe19 😺yuppe19 😺
提出日時 2015-05-25 23:43:46
言語 Python2
(2.7.18)
結果
AC  
実行時間 376 ms / 5,000 ms
コード長 1,413 bytes
コンパイル時間 543 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 38,016 KB
最終ジャッジ日時 2024-07-06 08:32:18
合計ジャッジ時間 7,443 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
6,816 KB
testcase_01 AC 11 ms
6,940 KB
testcase_02 AC 376 ms
6,944 KB
testcase_03 AC 48 ms
6,940 KB
testcase_04 AC 155 ms
6,940 KB
testcase_05 AC 123 ms
6,944 KB
testcase_06 AC 151 ms
6,944 KB
testcase_07 AC 240 ms
6,940 KB
testcase_08 AC 37 ms
6,940 KB
testcase_09 AC 187 ms
6,940 KB
testcase_10 AC 81 ms
6,944 KB
testcase_11 AC 84 ms
6,940 KB
testcase_12 AC 128 ms
6,944 KB
testcase_13 AC 58 ms
6,940 KB
testcase_14 AC 20 ms
6,944 KB
testcase_15 AC 288 ms
6,944 KB
testcase_16 AC 247 ms
6,940 KB
testcase_17 AC 76 ms
6,940 KB
testcase_18 AC 259 ms
6,944 KB
testcase_19 AC 354 ms
6,940 KB
testcase_20 AC 223 ms
13,952 KB
testcase_21 AC 274 ms
37,888 KB
testcase_22 AC 272 ms
38,016 KB
testcase_23 AC 23 ms
7,552 KB
testcase_24 AC 136 ms
20,992 KB
testcase_25 AC 124 ms
19,712 KB
testcase_26 AC 119 ms
19,328 KB
testcase_27 AC 151 ms
23,552 KB
testcase_28 AC 43 ms
9,856 KB
testcase_29 AC 256 ms
35,456 KB
testcase_30 AC 363 ms
6,940 KB
testcase_31 AC 12 ms
6,940 KB
testcase_32 AC 115 ms
6,944 KB
testcase_33 AC 165 ms
6,940 KB
testcase_34 AC 134 ms
6,940 KB
testcase_35 AC 115 ms
6,948 KB
testcase_36 AC 278 ms
6,940 KB
testcase_37 AC 37 ms
6,940 KB
testcase_38 AC 313 ms
6,940 KB
testcase_39 AC 131 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/python

mod = int(1e9) + 7

def solve1(n, k, a):
    y = 0
    for i in xrange(n):
        y = (y + a[i]) % mod
    z = y
    for i in xrange(n, k):
        a.append(z)
        y = (y + z) % mod
        z = (z + z - a[i-n]) % mod
    return a[-1], y

def matmul(A, B):
    p, q = len(A[0]), len(B)
    if p != q:
        print 'len(A[0])={} len(B)={}'.format(p, q)
        return None
    rows, cols, times = len(A), len(B[0]), len(A[0])
    res = [[0 for _ in xrange(cols)] for _ in xrange(rows)]
    for r in xrange(rows):
        for c in xrange(cols):
            res[r][c] = sum(A[r][i]*B[i][c] for i in xrange(times)) % mod
    return res

def matpow(A, n):
    sz = len(A)
    res = [[1 if i==j else 0 for j in xrange(sz)] for i in xrange(sz)]
    while n > 0:
        if n & 1:
            res = matmul(res, A)
        A = matmul(A, A)
        n >>= 1
    return res

def solve2(n, k, a):
    mat = [[0] * (n+1) for _ in xrange(n+1)]
    mat[0][0] = 2
    mat[0][-1] = -1
    for i in xrange(n):
        mat[i+1][i] = 1
    powered = matpow(mat, k-n)
    s = [0] + [sum(a[:i+1]) for i in xrange(n)]
    s = zip(s[::-1])
    res = matmul(powered, s)
    res00 = res[0][0]
    res10 = res[1][0]
    return (res00 - res10) % mod, res00 % mod

n, k = map(int, raw_input().split())
a = map(int, raw_input().split())
if k <= 1e6:
    x, y = solve1(n, k, a)
else:
    x, y = solve2(n, k, a)
print x, y
0