結果

問題 No.2279 OR Insertion
ユーザー t98slidert98slider
提出日時 2023-04-21 22:57:21
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 77 ms / 2,000 ms
コード長 3,905 bytes
コンパイル時間 1,647 ms
コンパイル使用メモリ 167,052 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-24 08:58:57
合計ジャッジ時間 4,289 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 9 ms
5,376 KB
testcase_03 AC 5 ms
5,376 KB
testcase_04 AC 65 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 27 ms
5,376 KB
testcase_07 AC 28 ms
5,376 KB
testcase_08 AC 10 ms
5,376 KB
testcase_09 AC 36 ms
5,376 KB
testcase_10 AC 63 ms
5,376 KB
testcase_11 AC 8 ms
5,376 KB
testcase_12 AC 47 ms
5,376 KB
testcase_13 AC 4 ms
5,376 KB
testcase_14 AC 5 ms
5,376 KB
testcase_15 AC 30 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 25 ms
5,376 KB
testcase_18 AC 41 ms
5,376 KB
testcase_19 AC 54 ms
5,376 KB
testcase_20 AC 28 ms
5,376 KB
testcase_21 AC 21 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 1 ms
5,376 KB
testcase_25 AC 1 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 1 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 69 ms
5,376 KB
testcase_33 AC 71 ms
5,376 KB
testcase_34 AC 74 ms
5,376 KB
testcase_35 AC 70 ms
5,376 KB
testcase_36 AC 71 ms
5,376 KB
testcase_37 AC 70 ms
5,376 KB
testcase_38 AC 69 ms
5,376 KB
testcase_39 AC 73 ms
5,376 KB
testcase_40 AC 70 ms
5,376 KB
testcase_41 AC 70 ms
5,376 KB
testcase_42 AC 74 ms
5,376 KB
testcase_43 AC 73 ms
5,376 KB
testcase_44 AC 77 ms
5,376 KB
testcase_45 AC 63 ms
5,376 KB
testcase_46 AC 62 ms
5,376 KB
testcase_47 AC 62 ms
5,376 KB
testcase_48 AC 75 ms
5,376 KB
testcase_49 AC 61 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;

template<const unsigned int MOD> struct prime_modint {
    using mint = prime_modint;
    unsigned int v;
    prime_modint() : v(0) {}
    prime_modint(unsigned int a) { a %= MOD; v = a; }
    prime_modint(unsigned long long a) { a %= MOD; v = a; }
    prime_modint(int a) { a %= (int)(MOD); if(a < 0)a += MOD; v = a; }
    prime_modint(long long a) { a %= (int)(MOD); if(a < 0)a += MOD; v = a; }
    static constexpr int mod() { return MOD; }
    mint& operator++() {v++; if(v == MOD)v = 0; return *this;}
    mint& operator--() {if(v == 0)v = MOD; v--; return *this;}
    mint operator++(int) { mint result = *this; ++*this; return result; }
    mint operator--(int) { mint result = *this; --*this; return result; }
    mint& operator+=(const mint& rhs) { v += rhs.v; if(v >= MOD) v -= MOD; return *this; }
    mint& operator-=(const mint& rhs) { if(v < rhs.v) v += MOD; v -= rhs.v; return *this; }
    mint& operator*=(const mint& rhs) {
        v = (unsigned int)((unsigned long long)(v) * rhs.v % MOD);
        return *this;
    }
    mint& operator/=(const mint& rhs) { return *this = *this * rhs.inv(); }
    mint operator+() const { return *this; }
    mint operator-() const { return mint() - *this; }
    mint pow(long long n) const {
        assert(0 <= n);
        mint r = 1, x = *this;
        while (n) {
            if (n & 1) r *= x;
            x *= x;
            n >>= 1;
        }
        return r;
    }
    mint inv() const { assert(v); return pow(MOD - 2); }
    friend mint operator+(const mint& lhs, const mint& rhs) { return mint(lhs) += rhs; }
    friend mint operator-(const mint& lhs, const mint& rhs) { return mint(lhs) -= rhs; }
    friend mint operator*(const mint& lhs, const mint& rhs) { return mint(lhs) *= rhs; }
    friend mint operator/(const mint& lhs, const mint& rhs) { return mint(lhs) /= rhs; }
    friend bool operator==(const mint& lhs, const mint& rhs) { return (lhs.v == rhs.v); }
    friend bool operator!=(const mint& lhs, const mint& rhs) { return (lhs.v != rhs.v); }
    friend std::ostream& operator << (std::ostream &os, const mint& rhs) noexcept { return os << rhs.v; }
};
//using mint = prime_modint<1000000007>;
using mint = prime_modint<998244353>;

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    int n;
    string s;
    cin >> n >> s;
    mint ans, d = 1;
    for(int i = 1; i <= n; i++){
        vector<array<mint,2>> dp(n + 2, {0, 0});
        vector<mint> cum0(n + 2);
        mint s0 = 1, s1;
        dp[0][0] = 1;
        cum0[1] = 1;
        /*for(int j = 0; j < n; j++){
            for(int k = j + 1; k <= n; k++){
                dp[k][(k >= i && k - i >= j && s[k - i] == '1')] += dp[j][0];
                dp[k][1] += dp[j][1];
            }
        }*/
        /*for(int j = 0; j < n; j++){
            dp[j + 1][0] += 2 * dp[j][0];
            dp[j + 1][1] += 2 * dp[j][1];
            if(j + i <= n && s[j] == '1'){
                dp[j + i][0] -= dp[j][0];
                dp[j + i + 1][0] += dp[j][0];
                dp[j + i][1] += dp[j][0];
                dp[j + i + 1][1] -= dp[j][0];
            }
        }*/
        for(int j = 1; j <= n; j++){
            if(j >= i && s[j - i] == '1'){
                dp[j][0] = s0 - cum0[j - i + 1];
                dp[j][1] = cum0[j - i + 1] + s1;
            }else{
                dp[j][0] = s0;
                dp[j][1] = s1;
            }
            cum0[j + 1] = cum0[j] + dp[j][0];
            s0 += dp[j][0], s1 += dp[j][1];
        }
        //cerr << dp[0][0] << " " << dp[0][1] << '\n';
        //cerr << dp[1][0] << " " << dp[1][1] << '\n';
        //cerr << dp[2][0] << " " << dp[2][1] << '\n';
        //cerr << dp[3][0] << " " << dp[3][1] << '\n';

        //cerr << dp[n][0] << " " << dp[n][1] << '\n';
        ans += d * dp[n][1];
        d += d;
    }
    cout << ans << '\n';
}
0