結果

問題 No.1654 Binary Compression
ユーザー kmjpkmjp
提出日時 2021-08-21 00:26:37
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 157 ms / 2,000 ms
コード長 1,643 bytes
コンパイル時間 2,096 ms
コンパイル使用メモリ 210,208 KB
実行使用メモリ 42,300 KB
最終ジャッジ日時 2024-10-14 09:02:57
合計ジャッジ時間 8,348 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 3 ms
6,820 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 3 ms
6,816 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 2 ms
6,820 KB
testcase_08 AC 2 ms
6,820 KB
testcase_09 AC 3 ms
6,816 KB
testcase_10 AC 127 ms
41,084 KB
testcase_11 AC 128 ms
41,136 KB
testcase_12 AC 130 ms
41,660 KB
testcase_13 AC 132 ms
41,612 KB
testcase_14 AC 128 ms
42,024 KB
testcase_15 AC 128 ms
41,356 KB
testcase_16 AC 89 ms
42,300 KB
testcase_17 AC 92 ms
41,692 KB
testcase_18 AC 126 ms
41,656 KB
testcase_19 AC 132 ms
41,732 KB
testcase_20 AC 128 ms
41,508 KB
testcase_21 AC 130 ms
41,684 KB
testcase_22 AC 129 ms
41,636 KB
testcase_23 AC 26 ms
41,164 KB
testcase_24 AC 25 ms
40,824 KB
testcase_25 AC 25 ms
41,224 KB
testcase_26 AC 25 ms
41,368 KB
testcase_27 AC 88 ms
41,384 KB
testcase_28 AC 86 ms
41,664 KB
testcase_29 AC 25 ms
40,292 KB
testcase_30 AC 25 ms
40,484 KB
testcase_31 AC 26 ms
40,648 KB
testcase_32 AC 25 ms
40,224 KB
testcase_33 AC 69 ms
40,692 KB
testcase_34 AC 69 ms
41,316 KB
testcase_35 AC 26 ms
40,772 KB
testcase_36 AC 25 ms
40,488 KB
testcase_37 AC 26 ms
40,668 KB
testcase_38 AC 25 ms
40,544 KB
testcase_39 AC 157 ms
41,968 KB
testcase_40 AC 154 ms
42,036 KB
testcase_41 AC 157 ms
41,660 KB
testcase_42 AC 18 ms
8,412 KB
testcase_43 AC 22 ms
9,384 KB
testcase_44 AC 155 ms
42,164 KB
testcase_45 AC 154 ms
41,696 KB
testcase_46 AC 12 ms
7,864 KB
testcase_47 AC 2 ms
6,816 KB
testcase_48 AC 2 ms
6,816 KB
testcase_49 AC 83 ms
40,924 KB
testcase_50 AC 85 ms
40,388 KB
testcase_51 AC 74 ms
28,000 KB
testcase_52 AC 74 ms
27,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef signed long long ll;

#define _P(...) (void)printf(__VA_ARGS__)
#define FOR(x,to) for(x=0;x<(to);x++)
#define FORR(x,arr) for(auto& x:arr)
#define FORR2(x,y,arr) for(auto& [x,y]:arr)
#define ALL(a) (a.begin()),(a.end())
#define ZERO(a) memset(a,0,sizeof(a))
#define MINUS(a) memset(a,0xff,sizeof(a))
template<class T> bool chmax(T &a, const T &b) { if(a<b){a=b;return 1;}return 0;}
template<class T> bool chmin(T &a, const T &b) { if(a>b){a=b;return 1;}return 0;}
//-------------------------------------------------------


int N;
string S;
const ll mo=924844033;

int len0[3030303];
ll dp[3030303];

void solve() {
	int i,j,k,l,r,x,y; string s;
	
	cin>>S;
	
	if(count(ALL(S),'1')==0) {
		cout<<S.size()<<endl;
		return;
	}
	
	int lef=1;
	while(S.back()=='0') {
		S.pop_back();
		lef++;
	}
	
	N=S.size();
	int cur=0;
	FOR(i,N) {
		if(S[i]=='0') {
			cur++;
		}
		else {
			len0[i]=cur+1;
			cur=0;
		}
	}
	map<int,ll> tar;
	ll sum=lef;
	for(i=N-1;i>=0;i--) if(S[i]=='1') {
		dp[i]=sum;
		int pre=0;
		
		while(tar.size()) {
			x=tar.begin()->first;
			y=tar.begin()->second;
			if(x<=len0[i]) {
				(sum-=1LL*(x-pre)*y)%=mo;
				pre=x;
				tar.erase(tar.begin());
			}
			else {
				(sum-=1LL*(len0[i]-pre)*y)%=mo;
				break;
			}
		}
		sum=(sum+mo+len0[i]*dp[i])%mo;
		tar[len0[i]]=dp[i];
	}
	
	cout<<(tar.begin()->first)*(ll)(tar.begin()->second)%mo<<endl;
	
	
}


int main(int argc,char** argv){
	string s;int i;
	if(argc==1) ios::sync_with_stdio(false), cin.tie(0);
	FOR(i,argc-1) s+=argv[i+1],s+='\n'; FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin);
	cout.tie(0); solve(); return 0;
}
0