結果

問題 No.2106 Wild Cacco
ユーザー 👑 NachiaNachia
提出日時 2022-10-21 22:20:29
言語 C++17
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 123 ms / 2,000 ms
コード長 1,555 bytes
コンパイル時間 897 ms
コンパイル使用メモリ 83,280 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-09-13 22:40:17
合計ジャッジ時間 3,688 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 1 ms
4,376 KB
testcase_02 AC 1 ms
4,380 KB
testcase_03 AC 2 ms
4,380 KB
testcase_04 AC 2 ms
4,376 KB
testcase_05 AC 1 ms
4,380 KB
testcase_06 AC 2 ms
4,376 KB
testcase_07 AC 2 ms
4,380 KB
testcase_08 AC 2 ms
4,376 KB
testcase_09 AC 1 ms
4,380 KB
testcase_10 AC 1 ms
4,376 KB
testcase_11 AC 33 ms
4,380 KB
testcase_12 AC 65 ms
4,380 KB
testcase_13 AC 87 ms
4,380 KB
testcase_14 AC 47 ms
4,376 KB
testcase_15 AC 51 ms
4,380 KB
testcase_16 AC 82 ms
4,380 KB
testcase_17 AC 68 ms
4,380 KB
testcase_18 AC 54 ms
4,376 KB
testcase_19 AC 61 ms
4,376 KB
testcase_20 AC 66 ms
4,380 KB
testcase_21 AC 71 ms
4,380 KB
testcase_22 AC 43 ms
4,380 KB
testcase_23 AC 37 ms
4,380 KB
testcase_24 AC 54 ms
4,380 KB
testcase_25 AC 64 ms
4,380 KB
testcase_26 AC 122 ms
4,376 KB
testcase_27 AC 117 ms
4,380 KB
testcase_28 AC 118 ms
4,380 KB
testcase_29 AC 2 ms
4,376 KB
testcase_30 AC 121 ms
4,376 KB
testcase_31 AC 37 ms
4,380 KB
testcase_32 AC 34 ms
4,380 KB
testcase_33 AC 123 ms
4,380 KB
testcase_34 AC 123 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
#include <utility>
#include <atcoder/modint>

using namespace std;
using i32 = int32_t;
using u32 = uint32_t;
using i64 = int64_t;
using u64 = uint64_t;
#define rep(i,n) for(int i=0; i<(int)(n); i++)

const i64 INF = 1001001001001001001;
using Modint = atcoder::static_modint<998244353>;

int main(){
    string S; cin >> S;
    int N = S.size();
    vector<Modint> dp0(N+1, 0);
    vector<Modint> dp1(N+1, 0);
    dp0[0] = 1;
    vector<Modint> tmp0(N+1, 0);
    vector<Modint> tmp1(N+1, 0);

    auto goL = [&](){
        for(int i=N; i>=1; i--) tmp0[i] += dp0[i-1];
        for(int i=N; i>=1; i--) tmp1[i] += dp1[i-1];
    };
    auto goR = [&](){
        for(int i=N; i>=1; i--) tmp0[i-1] += dp0[i];
        for(int i=N; i>=1; i--) tmp1[i-1] += dp1[i];
    };
    auto goQ = [&](){
        for(int i=N; i>=1; i--) tmp0[i] += dp0[i-1];
        for(int i=N; i>=1; i--) tmp1[i-1] += dp1[i];
        for(int i=N; i>=1; i--) tmp1[i-1] += dp0[i];
    };

    for(char c : S){
        if(c == '('){ goL(); }
        if(c == ')'){ goR(); }
        if(c == '?'){ goQ(); }
        if(c == '.'){ goL(); goR(); goQ(); }
        swap(dp0, tmp0);
        swap(dp1, tmp1);
        for(auto& a : tmp0) a = 0;
        for(auto& a : tmp1) a = 0;
    }

    Modint ans = dp0[0] + dp1[0];
    cout << ans.val() << '\n';
    return 0;
}


struct ios_do_not_sync{
    ios_do_not_sync(){
        std::ios::sync_with_stdio(false);
        std::cin.tie(nullptr);
    }
} ios_do_not_sync_instance;


0