結果

問題 No.1654 Binary Compression
ユーザー pockynypockyny
提出日時 2021-08-20 23:38:33
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 797 bytes
コンパイル時間 842 ms
コンパイル使用メモリ 77,456 KB
実行使用メモリ 102,904 KB
最終ジャッジ日時 2024-04-22 08:26:22
合計ジャッジ時間 7,718 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 WA -
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 122 ms
53,264 KB
testcase_17 AC 165 ms
53,260 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 61 ms
7,432 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 180 ms
100,180 KB
testcase_42 WA -
testcase_43 WA -
testcase_44 AC 183 ms
100,180 KB
testcase_45 AC 181 ms
100,308 KB
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 AC 115 ms
48,756 KB
testcase_51 WA -
testcase_52 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <vector>

using namespace std;
typedef long long ll;
ll mod = 924844033,dp[3000010][2] = {};
vector<ll> v,u;
int main(){
    string s; cin >> s;
    int i,n = s.size();
    v.push_back(-1);
    for(i=0;i<n;i++){
        if(s[i]=='1') v.push_back(i);
    }
    v.push_back(n);
    for(i=0;i<(int)v.size() - 1;i++) u.push_back(v[i + 1] - v[i] - 1);
    ll ans = (u[0] + 1)*(u.back() + 1)%mod;
    dp[1][0] = 1; dp[1][1] = u[1] + 1;
    for(i=2;i<(int)u.size() - 1;i++){
        dp[i][1] = (u[i] + 1)*dp[i - 1][1]%mod;
        dp[i][0] = (dp[i - 1][1] + dp[i - 1][0])%mod;
    }
    /*for(i=0;i<u.size();i++) cout << u[i] << " ";
    cout << endl;*/
    int k = u.size();
    (ans *= (dp[k - 2][0] + dp[k - 2][1])%mod) %= mod;
    cout << ans << endl;
}
0