結果

問題 No.1011 Infinite Stairs
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2021-12-04 09:47:44
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 674 ms / 2,000 ms
コード長 1,179 bytes
コンパイル時間 83 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 67,936 KB
最終ジャッジ日時 2024-07-06 14:36:15
合計ジャッジ時間 17,471 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 504 ms
43,504 KB
testcase_01 AC 477 ms
43,892 KB
testcase_02 AC 454 ms
43,888 KB
testcase_03 AC 572 ms
55,188 KB
testcase_04 AC 655 ms
67,936 KB
testcase_05 AC 645 ms
67,688 KB
testcase_06 AC 456 ms
43,760 KB
testcase_07 AC 487 ms
43,504 KB
testcase_08 AC 465 ms
44,036 KB
testcase_09 AC 454 ms
43,888 KB
testcase_10 AC 468 ms
44,020 KB
testcase_11 AC 538 ms
52,840 KB
testcase_12 AC 475 ms
44,020 KB
testcase_13 AC 545 ms
52,348 KB
testcase_14 AC 457 ms
43,888 KB
testcase_15 AC 475 ms
43,508 KB
testcase_16 AC 674 ms
66,060 KB
testcase_17 AC 590 ms
57,072 KB
testcase_18 AC 527 ms
47,004 KB
testcase_19 AC 463 ms
43,892 KB
testcase_20 AC 486 ms
43,664 KB
testcase_21 AC 512 ms
47,124 KB
testcase_22 AC 595 ms
53,488 KB
testcase_23 AC 515 ms
45,984 KB
testcase_24 AC 516 ms
45,608 KB
testcase_25 AC 502 ms
45,688 KB
testcase_26 AC 474 ms
43,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

def convolve(f, g):
    tf = np.array(f, np.int64)
    tg = np.array(g, np.int64) 
    fft_len = 1
    while 2 * fft_len < len(tf) + len(tg) - 1:
        fft_len *= 2
    
    fft_len *= 2

    # フーリエ変換
    Ff = np.fft.rfft(tf, fft_len)
    Fg = np.fft.rfft(tg, fft_len)

    # 各点積
    Fh = Ff * Fg

    # フーリエ逆変換
    h = np.fft.irfft(Fh, fft_len)

    # 小数になっているので、整数にまるめる
    h = np.rint(h).astype(np.int64)

    return h[:len(f) + len(g) - 1]

def convolve2(f,g,p):
    
    
    f1,f2 = np.divmod(f,1<<15)
    g1,g2 = np.divmod(g,1<<15)
    
    a = convolve(f1,g1)%p
    c = convolve(f2,g2)%p
    b = (convolve(f1+f2,g1+g2) - a - c)%p
    h = (a<<30) + (b<<15) + c
    return h%p
    
def convolve_pow(f,n,p):
    nbit = list(str(bin(n))[2:])
    nbit = [int(i) for i in nbit]
    N = len(f)
    C = [1] + [0]*(N-1)
    
    B = f

        
    for i in range(len(nbit)):
        if nbit[-1-i] == 1:
            C = convolve2(C,B,p)
        
        B = convolve2(B,B,p)
    
    return C

N,d,K = map(int,input().split())
mod = 10**9 + 7
A = [0] + [1]*d
print(convolve_pow(A,N,mod)[K])
0