結果
問題 | No.1654 Binary Compression |
ユーザー | pockyny |
提出日時 | 2021-08-21 04:46:25 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,394 bytes |
コンパイル時間 | 753 ms |
コンパイル使用メモリ | 79,104 KB |
実行使用メモリ | 118,740 KB |
最終ジャッジ日時 | 2024-10-14 13:24:22 |
合計ジャッジ時間 | 11,484 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | WA | - |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
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 | 207 ms
62,480 KB |
testcase_17 | AC | 208 ms
62,348 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 | 66 ms
7,184 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 | 376 ms
118,740 KB |
testcase_42 | AC | 66 ms
7,312 KB |
testcase_43 | AC | 66 ms
7,312 KB |
testcase_44 | AC | 376 ms
118,740 KB |
testcase_45 | AC | 368 ms
118,616 KB |
testcase_46 | WA | - |
testcase_47 | AC | 2 ms
6,816 KB |
testcase_48 | WA | - |
testcase_49 | AC | 228 ms
60,028 KB |
testcase_50 | AC | 196 ms
60,740 KB |
testcase_51 | WA | - |
testcase_52 | WA | - |
ソースコード
#include <iostream> #include <string> #include <vector> using namespace std; typedef long long ll; ll mod = 924844033,dp[3000010] = {}; 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); if(u.size()==1){ cout << u[0] + 1 << endl; return 0; } ll ans = (u[0] + 1LL)*(u.back() + 1LL)%mod; if(u.size()==2){ cout << ans << endl; return 0; } u.erase(u.begin()); u.pop_back(); vector<pair<int,int>> st; st.push_back({0,1000000000}); dp[0] = 1; for(i=1;i<=u.size();i++){ int mx = -1; while(st.back().second<u[i - 1]){ int j = st.back().first; (dp[i] += (u[i - 1] - mx)*dp[j]%mod) %= mod; mx = st.back().second; st.pop_back(); } int j = st.back().first; (dp[i] += (u[i - 1] - mx)*dp[j]%mod) %= mod; st.push_back({i,u[i - 1]}); } /*for(i=0;i<u.size();i++) cout << u[i] << " "; cout << endl; for(i=0;i<=u.size();i++) cout << dp[i] << " "; cout << endl;*/ ll ans2 = 0; for(i=0;i<=u.size();i++) (ans2 += dp[i]) %= mod; (ans *= ans2) %= mod; //(ans *= dp[u.size()]) %= mod; cout << ans << endl; }