結果

問題 No.1654 Binary Compression
ユーザー chineristACchineristAC
提出日時 2021-08-20 23:01:20
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,198 bytes
コンパイル時間 371 ms
コンパイル使用メモリ 81,980 KB
実行使用メモリ 835,720 KB
最終ジャッジ日時 2024-10-14 06:15:50
合計ジャッジ時間 40,117 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,028 KB
testcase_01 AC 38 ms
53,336 KB
testcase_02 AC 38 ms
53,016 KB
testcase_03 AC 39 ms
53,480 KB
testcase_04 AC 38 ms
53,148 KB
testcase_05 AC 39 ms
53,096 KB
testcase_06 AC 38 ms
52,960 KB
testcase_07 AC 37 ms
53,024 KB
testcase_08 AC 37 ms
52,912 KB
testcase_09 AC 38 ms
54,380 KB
testcase_10 AC 1,218 ms
445,580 KB
testcase_11 AC 1,160 ms
460,792 KB
testcase_12 AC 1,134 ms
455,304 KB
testcase_13 AC 1,174 ms
462,824 KB
testcase_14 AC 1,159 ms
460,552 KB
testcase_15 AC 1,160 ms
456,540 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 1,184 ms
460,608 KB
testcase_19 AC 1,246 ms
477,928 KB
testcase_20 AC 1,226 ms
477,944 KB
testcase_21 AC 1,197 ms
477,776 KB
testcase_22 AC 1,195 ms
477,972 KB
testcase_23 AC 274 ms
198,096 KB
testcase_24 AC 277 ms
197,996 KB
testcase_25 AC 276 ms
197,948 KB
testcase_26 AC 278 ms
198,136 KB
testcase_27 MLE -
testcase_28 MLE -
testcase_29 AC 273 ms
197,760 KB
testcase_30 AC 274 ms
198,152 KB
testcase_31 AC 276 ms
197,756 KB
testcase_32 AC 275 ms
197,820 KB
testcase_33 MLE -
testcase_34 MLE -
testcase_35 AC 283 ms
198,404 KB
testcase_36 AC 286 ms
198,664 KB
testcase_37 AC 281 ms
198,384 KB
testcase_38 AC 281 ms
198,400 KB
testcase_39 AC 281 ms
198,416 KB
testcase_40 AC 274 ms
198,020 KB
testcase_41 AC 449 ms
302,964 KB
testcase_42 AC 448 ms
302,604 KB
testcase_43 AC 441 ms
303,020 KB
testcase_44 AC 456 ms
303,228 KB
testcase_45 AC 455 ms
302,792 KB
testcase_46 AC 459 ms
302,944 KB
testcase_47 AC 37 ms
53,340 KB
testcase_48 AC 37 ms
53,408 KB
testcase_49 TLE -
testcase_50 TLE -
testcase_51 AC 783 ms
365,220 KB
testcase_52 AC 714 ms
353,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import groupby
 
s=input()
n=len(s)
s=[s[i] for i in range(n)]
mod=924844033
 
data=groupby(s)
data=[(key,len(list(group))) for key,group in data]
Start=1
End=1
if data[0][0]=="0":
    Start+=data[0][1]
    data=data[1:]
if not data:
    print(Start-1)
    exit()
 
if data[-1][0]=="0":
    End+=data[-1][1]
    data.pop()
 
comp=[0]*len(data)
for i in range(len(data)):
    comp[i]=data[i][1]
 
n=len(comp)
if n==1:
    print(comp[0]*Start*End)
    exit()
 
odd=[(comp[i],i//2) for i in range(n) if i%2==1]
#print(odd)
N=len(odd)
ID=[-1]*n
stack=[]
for i in range(N):
    while stack and stack[-1][0]<odd[i][0]:
        stack.pop()
    if stack:
        ID[2*i+1]=stack[-1][1]
    stack.append(odd[i])
 
#print(ID[1::2])
dp=[0]*n
dp[0]=comp[0]
pre=[0]*n
for i in range(2,n,2):
    id=ID[i-1]
    if id==-1:
        res=comp[i-1]*dp[i-2]
        pre[i-1]=res
        #prel[i-1]=1
    else:
        j=2*id+1
        #res=(comp[i-1]*dp[i-2]+(comp[j]-comp[i-1])*premono[j])%mod
        res=(comp[i-1]*dp[i-2]+pre[j]-comp[i-1]*dp[j-1])%mod
        pre[i-1]=res
        #prel[i-1]=prel[j]+1
    dp[i]=(comp[i]*res+dp[i-2]+comp[i])%mod
#print(pre)
#print(dp)
print((dp[-1]*Start*End)%mod)
0