結果

問題 No.1694 ZerOne
ユーザー chocoruskchocorusk
提出日時 2021-10-04 04:14:30
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 18 ms / 2,000 ms
コード長 1,503 bytes
コンパイル時間 4,354 ms
コンパイル使用メモリ 189,940 KB
実行使用メモリ 60,876 KB
最終ジャッジ日時 2024-07-22 02:11:02
合計ジャッジ時間 4,901 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
9,672 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 4 ms
9,800 KB
testcase_03 AC 14 ms
52,688 KB
testcase_04 AC 4 ms
13,896 KB
testcase_05 AC 8 ms
32,208 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 7 ms
26,204 KB
testcase_08 AC 10 ms
36,424 KB
testcase_09 AC 13 ms
52,692 KB
testcase_10 AC 7 ms
28,104 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 9 ms
38,356 KB
testcase_14 AC 13 ms
52,680 KB
testcase_15 AC 8 ms
32,340 KB
testcase_16 AC 8 ms
30,156 KB
testcase_17 AC 5 ms
15,944 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 2 ms
6,944 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 2 ms
6,940 KB
testcase_22 AC 2 ms
6,940 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 18 ms
60,872 KB
testcase_25 AC 17 ms
60,116 KB
testcase_26 AC 16 ms
60,876 KB
testcase_27 AC 16 ms
58,956 KB
testcase_28 AC 2 ms
6,940 KB
testcase_29 AC 2 ms
6,944 KB
testcase_30 AC 14 ms
52,816 KB
testcase_31 AC 15 ms
58,832 KB
testcase_32 AC 15 ms
56,784 KB
testcase_33 AC 15 ms
56,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <complex>
#include <unordered_map>
#include <unordered_set>
#include <random>
#include <cassert>
#include <fstream>
#include <utility>
#include <functional>
#include <time.h>
#include <stack>
#include <array>
#include <list>
#include <atcoder/all>
#define popcount __builtin_popcount
using namespace std;
using namespace atcoder;
typedef long long ll;
typedef pair<int, int> P;
using mint=modint998244353;
ll dp[61][61][2000];
int main()
{
    string s; cin>>s;
    int n=s.size();
    bool dame=1;
    for(int i=0; i<n-1; i++){
        for(int j=i+2; j<n-1; j++){
            if(s[i]=='0' && s[i+1]=='1' && s[j]=='1' && s[j+1]=='0'){
                dame=0;
            }
            if(s[i]=='1' && s[i+1]=='0' && s[j]=='0' && s[j+1]=='1'){
                dame=0;
            }
        }
    }
    if(dame){
        cout<<1<<endl;
        return 0;
    }
    int c=0;
    int d=0;
    for(int i=0; i<n; i++){
        if(s[i]=='1'){
            c++;
            d+=i+1;
        }
    }
    dp[0][0][0]=1;
    for(int i=0; i<n; i++){
        for(int j=0; j<=i; j++){
            for(int k=0; k<=i*(i+1)/2; k++){
                dp[i+1][j][k]+=dp[i][j][k];
                dp[i+1][j+1][k+i+1]+=dp[i][j][k];
            }
        }
    }
    cout<<dp[n][c][d]<<endl;
    return 0;
}
0