結果

問題 No.997 Jumping Kangaroo
ユーザー tamatotamato
提出日時 2020-03-18 11:40:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 47 ms / 2,000 ms
コード長 1,105 bytes
コンパイル時間 735 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 59,648 KB
最終ジャッジ日時 2024-05-08 02:10:49
合計ジャッジ時間 2,204 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,968 KB
testcase_01 AC 37 ms
52,224 KB
testcase_02 AC 41 ms
52,864 KB
testcase_03 AC 38 ms
52,352 KB
testcase_04 AC 37 ms
52,224 KB
testcase_05 AC 38 ms
52,096 KB
testcase_06 AC 38 ms
52,224 KB
testcase_07 AC 35 ms
52,224 KB
testcase_08 AC 38 ms
52,096 KB
testcase_09 AC 37 ms
52,096 KB
testcase_10 AC 36 ms
52,352 KB
testcase_11 AC 38 ms
51,840 KB
testcase_12 AC 37 ms
52,096 KB
testcase_13 AC 38 ms
52,736 KB
testcase_14 AC 38 ms
52,736 KB
testcase_15 AC 38 ms
52,864 KB
testcase_16 AC 46 ms
59,264 KB
testcase_17 AC 40 ms
52,352 KB
testcase_18 AC 43 ms
58,368 KB
testcase_19 AC 40 ms
52,736 KB
testcase_20 AC 44 ms
58,496 KB
testcase_21 AC 40 ms
52,480 KB
testcase_22 AC 47 ms
59,648 KB
testcase_23 AC 44 ms
59,648 KB
testcase_24 AC 39 ms
52,608 KB
testcase_25 AC 40 ms
52,864 KB
testcase_26 AC 38 ms
52,224 KB
testcase_27 AC 38 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    import sys
    input = sys.stdin.readline

    mod = 1000000007
    N, W, K = map(int, input().split())
    A = list(map(int, input().split()))

    def matmul(A, B):
        C = [[0] * len(B[0]) for _ in range(len(A))]
        for i in range(len(A)):
            for j in range(len(B[0])):
                for k in range(len(B)):
                    C[i][j] = (C[i][j] + A[i][k] * B[k][j]) % mod
        return C

    def matpow(A, p):
        n = len(A)
        B = [[0] * n for _ in range(n)]
        for i in range(n):
            B[i][i] = 1
        while p > 0:
            if p & 1:
                B = matmul(B, A)
            A = matmul(A, A)
            p >>= 1
        return B

    dp = [0] * (2*W+1)
    dp[0] = 1
    for i in range(2*W):
        for a in A:
            if i+a <= 2*W:
                dp[i+a] = (dp[i+a] + dp[i])%mod
    w = dp[W]
    ww = (dp[W*2] - w**2)%mod
    if K == 1:
        print(w)
        exit()

    mat = [[w, ww], [1, 0]]
    vec = [[w], [1]]
    ans = matmul(matpow(mat, K-1), vec)
    print(ans[0][0])


if __name__ == '__main__':
    main()
0