結果

問題 No.1049 Zero (Exhaust)
ユーザー yataro800yataro800
提出日時 2023-03-15 20:15:26
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 83 ms / 2,000 ms
コード長 1,258 bytes
コンパイル時間 3,910 ms
コンパイル使用メモリ 233,664 KB
実行使用メモリ 58,060 KB
最終ジャッジ日時 2024-09-18 08:50:49
合計ジャッジ時間 5,470 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 52 ms
40,460 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 42 ms
33,680 KB
testcase_06 AC 74 ms
57,908 KB
testcase_07 AC 11 ms
9,984 KB
testcase_08 AC 25 ms
19,328 KB
testcase_09 AC 55 ms
44,108 KB
testcase_10 AC 61 ms
47,892 KB
testcase_11 AC 62 ms
48,144 KB
testcase_12 AC 71 ms
55,048 KB
testcase_13 AC 18 ms
14,800 KB
testcase_14 AC 33 ms
26,696 KB
testcase_15 AC 52 ms
41,284 KB
testcase_16 AC 43 ms
33,984 KB
testcase_17 AC 47 ms
35,492 KB
testcase_18 AC 66 ms
48,768 KB
testcase_19 AC 59 ms
41,676 KB
testcase_20 AC 27 ms
18,888 KB
testcase_21 AC 62 ms
42,884 KB
testcase_22 AC 35 ms
25,476 KB
testcase_23 AC 83 ms
57,960 KB
testcase_24 AC 82 ms
58,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <math.h>

#include <algorithm>
#include <array>
#include <atcoder/all>
#include <bitset>
#include <iomanip>
#include <iostream>
#include <map>
#include <queue>
#include <sstream>
#include <vector>

using namespace std;
using namespace atcoder;

using Graph = vector<vector<int>>;

using ll = long long;
typedef pair<ll, ll> P_ll;
typedef pair<int, int> P;

const ll INF_ll = 1e17;
const int INF = 1e8;
template <class T>
bool chmax(T& a, const T& b) {
  if (a < b) {
    a = b;
    return 1;
  }
  return 0;
}
template <class T>
bool chmin(T& a, const T& b) {
  if (b < a) {
    a = b;
    return 1;
  }
  return 0;
}
template <typename T>
using min_priority_queue = priority_queue<T, vector<T>, greater<T>>;

int main() {
  ll P, K;
  cin >> P >> K;
  vector<vector<modint1000000007>> dp(K + 1, vector<modint1000000007>(2, 0));
  dp[0][0] = 1;
  for (int i = 0; i < K; i++) {
    {  //+
      dp[i + 1][0] += dp[i][0];
      dp[i + 1][0] += dp[i][1];

      dp[i + 1][1] += dp[i][1] * (P - 1);
      dp[i + 1][1] += dp[i][0] * (P - 1);
    }
    {  // x
      dp[i + 1][0] += dp[i][0] * P;
      dp[i + 1][0] += dp[i][1];

      dp[i + 1][1] += dp[i][1] * (P - 1);
    }
  }
  cout << dp[K][0].val() << endl;

  return 0;
}
0