結果

問題 No.1654 Binary Compression
ユーザー chineristACchineristAC
提出日時 2021-08-20 23:15:31
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 1,021 bytes
コンパイル時間 211 ms
コンパイル使用メモリ 82,424 KB
実行使用メモリ 578,120 KB
最終ジャッジ日時 2024-10-14 06:49:26
合計ジャッジ時間 19,146 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,804 KB
testcase_01 AC 37 ms
53,140 KB
testcase_02 AC 37 ms
52,896 KB
testcase_03 AC 37 ms
53,540 KB
testcase_04 AC 38 ms
52,440 KB
testcase_05 AC 38 ms
53,248 KB
testcase_06 AC 36 ms
53,356 KB
testcase_07 AC 37 ms
53,088 KB
testcase_08 AC 38 ms
52,196 KB
testcase_09 AC 38 ms
52,692 KB
testcase_10 AC 546 ms
313,720 KB
testcase_11 AC 541 ms
316,204 KB
testcase_12 AC 529 ms
309,616 KB
testcase_13 AC 548 ms
320,220 KB
testcase_14 AC 539 ms
316,076 KB
testcase_15 AC 554 ms
320,040 KB
testcase_16 MLE -
testcase_17 MLE -
testcase_18 AC 530 ms
310,452 KB
testcase_19 AC 559 ms
322,580 KB
testcase_20 AC 570 ms
321,892 KB
testcase_21 AC 540 ms
311,144 KB
testcase_22 AC 542 ms
310,836 KB
testcase_23 AC 80 ms
77,832 KB
testcase_24 AC 80 ms
77,912 KB
testcase_25 AC 80 ms
77,728 KB
testcase_26 AC 82 ms
79,028 KB
testcase_27 AC 777 ms
410,784 KB
testcase_28 AC 819 ms
391,976 KB
testcase_29 AC 80 ms
78,616 KB
testcase_30 AC 80 ms
79,036 KB
testcase_31 AC 83 ms
79,284 KB
testcase_32 AC 80 ms
78,268 KB
testcase_33 AC 834 ms
429,172 KB
testcase_34 AC 835 ms
434,592 KB
testcase_35 AC 92 ms
82,380 KB
testcase_36 AC 103 ms
82,780 KB
testcase_37 AC 100 ms
82,420 KB
testcase_38 AC 93 ms
82,500 KB
testcase_39 AC 82 ms
79,404 KB
testcase_40 AC 86 ms
79,820 KB
testcase_41 AC 71 ms
73,912 KB
testcase_42 AC 103 ms
80,452 KB
testcase_43 AC 72 ms
73,728 KB
testcase_44 AC 67 ms
73,788 KB
testcase_45 AC 68 ms
74,520 KB
testcase_46 AC 87 ms
81,048 KB
testcase_47 AC 37 ms
52,596 KB
testcase_48 AC 38 ms
53,768 KB
testcase_49 MLE -
testcase_50 MLE -
testcase_51 AC 272 ms
184,436 KB
testcase_52 AC 266 ms
184,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import groupby

mod = 924844033
 
s = input()
n = len(s)

if all(s[i]=="0" for i in range(n)):
    exit(print(n))

data = []
val = s[0]
cnt = 1
for i in range(1,n):
    if s[i]==val:
        cnt += 1
    else:
        data.append((val,cnt))
        val = s[i]
        cnt = 1
data.append((val,cnt))
Start = 1
End = 1
if data[0][0]=="0":
    Start+=data[0][1]
    data=data[1:]
if data[-1][0]=="0":
    End+=data[-1][1]
    data.pop()
 
n = len(data)
if n==1:
    print(data[0][1]*Start*End)
    exit()

stack=[]
dp = [0]*n
dp[0] = data[0][1]
pre = [0]*n

for i in range(2,n,2):
    j = -1
    while stack and data[stack[-1]][1]<data[i-1][1]:
        stack.pop()
    if stack:
        j = stack[-1]
    stack.append(i-1)

    if j==-1:
        res = (data[i-1][1]*dp[i-2] % mod)
        pre[i-1] = res
    else:
        res=((data[i-1][1]*dp[i-2] % mod)+pre[j]-(data[i-1][1]*dp[j-1] % mod))%mod
        pre[i-1] = res
    dp[i]=((data[i][1]*res % mod)+dp[i-2]+data[i][1])%mod

print((dp[-1]*Start*End)%mod)
0