結果

問題 No.2872 Depth of the Parentheses
ユーザー InTheBloomInTheBloom
提出日時 2024-09-06 22:01:59
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 23 ms / 2,000 ms
コード長 969 bytes
コンパイル時間 1,032 ms
コンパイル使用メモリ 90,820 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-06 22:02:09
合計ジャッジ時間 1,908 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <vector>

#include <atcoder/modint>

using namespace std;
using mint = atcoder::static_modint<998244353>;

int main () {
    int x, K; cin >> x >> K;

    // とんでもない高難易度問題かとおもったけど、シミュレーションが回る制約だった...

    if (10 < K) return 0;

    mint ans = 0;
    mint p = (mint(x) / 100).pow(K) * (1 - mint(x) / 100).pow(K);

    for (int S = 0; S < (1 << (2 * K)); S++) {
        int max_depth = [&] () {
            int res = 0;
            int cur = 0;
            for (int i = 0; i < 2 * K; i++) {
                int v = 1;
                if (0 < (S & (1 << i))) v = -1;
                cur += v;
                if (cur < 0) return -1;
                res = max(res, cur);
            }
            if (cur != 0) return -1;

            return res;
        }();

        if (max_depth == -1) continue;

        ans += p * max_depth;
    }

    cout << ans.val() << "\n";
}
0