結果

問題 No.2872 Depth of the Parentheses
ユーザー テナガザルテナガザル
提出日時 2024-09-07 00:25:32
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 1,682 bytes
コンパイル時間 1,195 ms
コンパイル使用メモリ 97,360 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-07 00:25:35
合計ジャッジ時間 2,551 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 2 ms
6,940 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 2 ms
6,940 KB
testcase_22 AC 2 ms
6,944 KB
evil_01.txt AC 12 ms
6,940 KB
evil_02.txt AC 12 ms
6,940 KB
evil_03.txt AC 12 ms
6,940 KB
evil_04.txt AC 12 ms
6,940 KB
evil_05.txt AC 12 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>

using namespace std;

struct Comb
{
  std::vector<long long> fac, finv, inv;
  const int mod;
  Comb(const int max, const int m) : mod(m), fac(max + 5), finv(max + 5), inv(max + 5)
  {
    fac[0] = fac[1] = finv[0] = finv[1] = inv[1] = 1;
    for (int i = 2; i < max + 5; ++i)
    {
      fac[i] = fac[i - 1] * i % mod;
      inv[i] = mod - inv[mod % i] * (mod / i) % mod;
      finv[i] = finv[i - 1] * inv[i] % mod;
    }
  }
  long long c(int n, int k)
  {
    if (n < k || n < 0 || k < 0) return 0;
    return fac[n] * (finv[k] * finv[n - k] % mod) % mod;
  }
  long long p(int n, int k)
  {
    if (n < k || n < 0 || k < 0) return 0;
    return fac[n] * finv[n - k] % mod;
  }
};

long long pow(long long a, long long k, long long m)
{
  long long ret = 1;
  for (a %= m; k > 0; k >>= 1, a = a * a % m) if (k & 1) ret = ret * a % m;
  return ret;
}

int main()
{
  const int mod = 998244353;
  int x, k;
  cin >> x >> k;
  --k;
  Comb cb(3 * k, mod);
  vector<long long> cnt(k + 1);
  long long inv = pow(100, mod - 2, mod);
  for (int i = 0; i <= k; ++i)
  {
    int tmp = k + 3 - i;
    for (int j = 1; j * tmp - 2 <= k; ++j) cnt[i] = (cnt[i] + cb.c(2 * k, k + j * tmp) - cb.c(2 * k, k - 2 + j * tmp) + mod) % mod;
    for (int j = 0; k + j * tmp >= 0; --j) cnt[i] = (cnt[i] + cb.c(2 * k, k + j * tmp) - cb.c(2 * k, k - 2 + j * tmp) + mod) % mod;
  }
  long long ans = 1;
  for (int i = 0; i < k; ++i) ans = (ans + (cnt[i] - cnt[i + 1] + mod) * (k - i + 1)) % mod;
  long long p = x * pow(100, mod - 2, mod) % mod;
  ans = ans * pow(p, k + 1, mod) % mod * pow(mod + 1 - p, k + 1, mod) % mod;
  cout << ans << endl;
}
0