結果

問題 No.1419 Power Moves
ユーザー maspymaspy
提出日時 2020-12-27 02:24:07
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 500 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 21,536 KB
最終ジャッジ日時 2024-04-10 07:28:53
合計ジャッジ時間 4,134 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
17,820 KB
testcase_01 AC 32 ms
10,752 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 28 ms
10,752 KB
testcase_05 AC 28 ms
10,752 KB
testcase_06 AC 28 ms
10,752 KB
testcase_07 AC 28 ms
10,752 KB
testcase_08 AC 28 ms
10,752 KB
testcase_09 TLE -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

"""
O(NK) solution
expect TLE, no WA
"""
MOD = 1_000_000_007

def naive(N, K):
    inv = (MOD + 1) // 2

    dp = [0] * N
    dp[0] = 1
    for i in range(K):
        newdp = [0] * N
        x = pow(2, i, N)
        for to in range(N):
            for frm in [to - x, to + x]:
                frm %= N
                newdp[to] += dp[frm]
            newdp[to] = newdp[to] * inv % MOD
        dp = newdp
    return dp
N, K = map(int, input().split())
ans = naive(N, K)
print('\n'.join(map(str, ans)))
0