結果

問題 No.2040 010-1 Deletion
ユーザー milkcoffeemilkcoffee
提出日時 2022-05-16 14:26:51
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 444 ms / 3,000 ms
コード長 2,943 bytes
コンパイル時間 4,529 ms
コンパイル使用メモリ 264,256 KB
実行使用メモリ 250,128 KB
最終ジャッジ日時 2023-10-14 17:49:35
合計ジャッジ時間 14,848 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,352 KB
testcase_01 AC 2 ms
4,356 KB
testcase_02 AC 1 ms
4,352 KB
testcase_03 AC 2 ms
4,352 KB
testcase_04 AC 2 ms
4,352 KB
testcase_05 AC 1 ms
4,348 KB
testcase_06 AC 2 ms
4,352 KB
testcase_07 AC 2 ms
4,352 KB
testcase_08 AC 2 ms
4,352 KB
testcase_09 AC 1 ms
4,348 KB
testcase_10 AC 2 ms
4,356 KB
testcase_11 AC 441 ms
250,084 KB
testcase_12 AC 441 ms
249,932 KB
testcase_13 AC 439 ms
249,916 KB
testcase_14 AC 440 ms
250,128 KB
testcase_15 AC 438 ms
249,924 KB
testcase_16 AC 442 ms
249,936 KB
testcase_17 AC 435 ms
249,940 KB
testcase_18 AC 444 ms
249,992 KB
testcase_19 AC 46 ms
31,048 KB
testcase_20 AC 22 ms
16,172 KB
testcase_21 AC 161 ms
96,020 KB
testcase_22 AC 202 ms
117,664 KB
testcase_23 AC 363 ms
209,540 KB
testcase_24 AC 415 ms
237,520 KB
testcase_25 AC 303 ms
178,348 KB
testcase_26 AC 267 ms
155,876 KB
testcase_27 AC 332 ms
192,968 KB
testcase_28 AC 266 ms
155,216 KB
testcase_29 AC 333 ms
196,072 KB
testcase_30 AC 198 ms
115,300 KB
testcase_31 AC 401 ms
229,852 KB
testcase_32 AC 418 ms
239,620 KB
testcase_33 AC 404 ms
232,552 KB
testcase_34 AC 408 ms
235,076 KB
testcase_35 AC 410 ms
233,280 KB
testcase_36 AC 387 ms
221,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#if __has_include(<atcoder/all>)
#include <atcoder/all>
using namespace atcoder;
#endif
using namespace std;

/*
#pragma GCC target("avx2")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")
*/

#define ll long long
#define rep(i, n) for (ll i = 0; i < n; ++i)
#define rep_up(i, a, n) for (ll i = a; i < n; ++i)
#define rep_down(i, a, n) for (ll i = a; i >= n; --i)
#define P pair<ll, ll>
#define pb push_back
#define bit_count(x) __builtin_popcountll(x)
#define gcd(a,b) __gcd(a,b)
#define lcm(a,b) a / gcd(a,b) * b
#define endl "\n"

#define all(v) v.begin(), v.end()
#define fi first
#define se second
#define vvvvll vector< vector <vector <vector<ll> > > >
#define vvvll vector< vector< vector<ll> > >
#define vvll vector< vector<ll> >
#define vll vector<ll>
#define pqll priority_queue<ll>
#define pqllg priority_queue<ll, vector<ll>, greater<ll>>

template<class T> inline void vin(vector<T>& v) { rep(i, v.size()) cin >> v.at(i); }
template <class T>
using V = vector<T>;

constexpr ll INF = (1ll << 60);
//constexpr ll mod = 1000000007;
constexpr ll mod = 998244353;

constexpr double pi = 3.14159265358979323846;
template <typename T>
inline bool chmax(T &a, T b)
{
    if (a < b)
    {
        a = b;
        return 1;
    }
    return 0;
}
template <typename T>
inline bool chmin(T &a, T b)
{
    if (a > b)
    {
        a = b;
        return 1;
    }
    return 0;
}
template <typename T>
void pt(T val)
{
    cout << val << "\n";
}
template <typename T>
void pt_vll(vector<T> &v)
{
    ll vs = v.size();
    rep(i, vs)
    {
        cout << v[i];

        if (i == vs - 1)
            cout << "\n";
        else
            cout << " ";
    }
}

// O(N^2) 想定解

void solve(){
    ll n, m, k, cnt = 0, sum = 0, ans = 0;
    cin>>n;
    assert(1<=n&&n<=2000);
    string s;
    cin>>s;
    assert(s.size()==n);
    ll flag=1;
    rep(i,n){
        assert(s[i]=='0'||s[i]=='1'||s[i]=='?');
        if(s[i]=='0') flag=0;
    }
    ans+=flag;
    vvvll dp(n+1,vvll(2*n+3,vll(2)));
    // dp[i][j][k]:=i番目まで見て、(0の連続区間数*2 - 0の個数)+n+1=j, 最後の文字がk
    dp[0][n+1][1]=1;
    rep(i,n){
        rep(j,2*n+1){
            if(s[i]!='1'){
                dp[i+1][j][0]+=dp[i][j+1][0];
                dp[i+1][j+2][0]+=dp[i][j+1][1];
                dp[i+1][j][0]%=mod;
                dp[i+1][j+2][0]%=mod;
            }
            if(s[i]!='0'){
                dp[i+1][j+1][1]+=dp[i][j+1][0];
                dp[i+1][j+1][1]+=dp[i][j+1][1];
                dp[i+1][j+1][1]%=mod;
            }
        }
    }
    rep(i,2*n+3){
        if(i>=n+3&&(i+n+1)%2==0){
            ans+=dp[n][i][0];
            ans+=dp[n][i][1];
            ans%=mod;
        }
    }
    ans%=mod;
    pt(ans);
}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    //cout << fixed << setprecision(16);
    //ll T;
    //cin>>T;
    //rep(ca,T)
    solve();
}   
0