結果

問題 No.1049 Zero (Exhaust)
ユーザー simkarensimkaren
提出日時 2020-05-27 11:53:40
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 99 ms / 2,000 ms
コード長 524 bytes
コンパイル時間 1,920 ms
コンパイル使用メモリ 181,660 KB
実行使用メモリ 57,856 KB
最終ジャッジ日時 2024-10-13 03:37:24
合計ジャッジ時間 4,108 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 66 ms
40,576 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 56 ms
33,536 KB
testcase_06 AC 96 ms
57,856 KB
testcase_07 AC 13 ms
9,984 KB
testcase_08 AC 31 ms
19,200 KB
testcase_09 AC 71 ms
44,160 KB
testcase_10 AC 79 ms
47,872 KB
testcase_11 AC 81 ms
48,000 KB
testcase_12 AC 91 ms
55,040 KB
testcase_13 AC 21 ms
14,720 KB
testcase_14 AC 41 ms
26,496 KB
testcase_15 AC 68 ms
41,344 KB
testcase_16 AC 55 ms
33,920 KB
testcase_17 AC 58 ms
35,328 KB
testcase_18 AC 82 ms
48,640 KB
testcase_19 AC 71 ms
41,728 KB
testcase_20 AC 30 ms
18,944 KB
testcase_21 AC 70 ms
42,752 KB
testcase_22 AC 40 ms
25,472 KB
testcase_23 AC 99 ms
57,856 KB
testcase_24 AC 98 ms
57,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize("O3", "unroll-loops")

#include <bits/stdc++.h>

using namespace std;

#define ll long long

constexpr ll mod = 1000000007LL;

int main(void){
    int p, k; cin >> p >> k;
    vector<vector<ll>> dp(k + 1, vector<ll>(2, 0LL));
    dp[0][0] = 1;
    for (int i = 1; i <= k; ++i){
        dp[i][0] = ((p - 1) * dp[i - 1][1] % mod * 2 + (p + 1) * dp[i - 1][0] % mod) % mod;
        dp[i][1] = (dp[i - 1][0] + 2 * (p - 1) % mod * dp[i - 1][1] % mod) % mod;
    }
    cout << dp[k][0] << endl;
    return 0;
}
0