結果

問題 No.1654 Binary Compression
ユーザー 👑Zack Ni👑Zack Ni
提出日時 2021-08-21 02:42:14
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 55 ms / 2,000 ms
コード長 629 bytes
コンパイル時間 1,701 ms
コンパイル使用メモリ 166,240 KB
実行使用メモリ 42,416 KB
最終ジャッジ日時 2024-04-22 11:58:28
合計ジャッジ時間 5,851 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 54 ms
39,920 KB
testcase_11 AC 53 ms
40,960 KB
testcase_12 AC 55 ms
41,272 KB
testcase_13 AC 55 ms
40,972 KB
testcase_14 AC 53 ms
40,420 KB
testcase_15 AC 54 ms
41,092 KB
testcase_16 AC 43 ms
41,504 KB
testcase_17 AC 42 ms
41,556 KB
testcase_18 AC 55 ms
41,396 KB
testcase_19 AC 55 ms
41,540 KB
testcase_20 AC 53 ms
41,496 KB
testcase_21 AC 55 ms
41,420 KB
testcase_22 AC 54 ms
42,416 KB
testcase_23 AC 44 ms
41,548 KB
testcase_24 AC 44 ms
41,396 KB
testcase_25 AC 44 ms
41,436 KB
testcase_26 AC 44 ms
41,464 KB
testcase_27 AC 43 ms
41,424 KB
testcase_28 AC 43 ms
41,820 KB
testcase_29 AC 44 ms
41,816 KB
testcase_30 AC 45 ms
41,916 KB
testcase_31 AC 43 ms
41,492 KB
testcase_32 AC 44 ms
41,412 KB
testcase_33 AC 43 ms
41,432 KB
testcase_34 AC 43 ms
42,096 KB
testcase_35 AC 44 ms
41,408 KB
testcase_36 AC 44 ms
41,688 KB
testcase_37 AC 44 ms
41,444 KB
testcase_38 AC 44 ms
41,816 KB
testcase_39 AC 42 ms
41,552 KB
testcase_40 AC 41 ms
41,268 KB
testcase_41 AC 40 ms
41,540 KB
testcase_42 AC 44 ms
41,544 KB
testcase_43 AC 45 ms
41,496 KB
testcase_44 AC 42 ms
41,432 KB
testcase_45 AC 41 ms
42,092 KB
testcase_46 AC 45 ms
41,660 KB
testcase_47 AC 2 ms
6,944 KB
testcase_48 AC 2 ms
6,940 KB
testcase_49 AC 44 ms
41,328 KB
testcase_50 AC 43 ms
41,264 KB
testcase_51 AC 49 ms
41,400 KB
testcase_52 AC 50 ms
41,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

const int mod = 924844033;

int main()
{
	ios::sync_with_stdio(false), cin.tie(0);

	string s; cin >> s;
	int n = s.length();
	vector<int> dist(n);
	for (int i = 0; i < n; ++i)
		if (s[i] == '0') dist[i] = (i ? dist[i-1] : 0) + 1;

	vector<int> dp(n + 2), nxt(n+2, n);
	auto get = [&](int i) { return nxt[i] < n ? dp[nxt[i]] : 0; };

	for (int i = n-1; i >= 0; --i)
	{
		dp[i] = ((dist[i] <= dist.back()) + get(0) + get(dist[i] + 1)) % mod;
		nxt[dist[i]] = i;
	}

	int ans = n;
	if (nxt[0] < n)
		ans = ((long long)get(0) * (nxt[0] + 1)) % mod;
	cout << ans << "\n";

	return 0;
}
0