結果

問題 No.2872 Depth of the Parentheses
ユーザー V_MelvilleV_Melville
提出日時 2024-09-06 22:47:23
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 214 ms / 2,000 ms
コード長 1,110 bytes
コンパイル時間 5,069 ms
コンパイル使用メモリ 310,304 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-06 22:47:43
合計ジャッジ時間 6,691 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 4 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 212 ms
6,940 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 52 ms
6,944 KB
testcase_11 AC 13 ms
6,940 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 13 ms
6,940 KB
testcase_14 AC 4 ms
6,940 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 212 ms
6,944 KB
testcase_17 AC 3 ms
6,940 KB
testcase_18 AC 214 ms
6,940 KB
testcase_19 AC 2 ms
6,948 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 WA -
evil_02.txt WA -
evil_03.txt WA -
evil_04.txt AC 2 ms
6,940 KB
evil_05.txt WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#if __has_include(<atcoder/all>)
#include <atcoder/all>
using namespace atcoder;
#endif
#define rep(i, n) for (int i = 0; i < (n); ++i)

using namespace std;
using mint = modint998244353;

int main() {
    int x, k;
    cin >> x >> k;
    k *= 2;
    int k2 = 1<<k;
    
    if (x == 0 or x == 100) {
        puts("0");
        return 0;
    }
    
    mint ans;
    rep(s, k2) {
        string t;
        rep(i, k) {
            if (s>>i&1) t += '(';
            else t += ')';
        }
        
        bool ok = true;
        int cnt = 0;
        for (char c : t) {
            cnt += c == '(' ? 1 : -1;
            if (cnt < 0) {
                ok = false;
                break;
            }
        }
        ok &= cnt == 0;
        if (!ok) continue;
        
        int mx = 0;
        int now = 0;
        for (char c : t) {
            if (c == '(') now++, mx = max(mx, now);
            else now--;
        }
        ans += mx;
    }
    ans *= mint(x).pow(k/2)*mint(100-x).pow(k/2);
    ans /=  mint(100).pow(k);
    
    cout << ans.val() << '\n';
    
    return 0;
}
0