結果

問題 No.1654 Binary Compression
ユーザー chineristACchineristAC
提出日時 2021-08-20 23:27:48
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 1,075 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 625,104 KB
最終ジャッジ日時 2024-10-14 07:14:43
合計ジャッジ時間 21,353 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,268 KB
testcase_01 AC 38 ms
52,672 KB
testcase_02 AC 37 ms
53,892 KB
testcase_03 AC 37 ms
52,272 KB
testcase_04 AC 37 ms
52,560 KB
testcase_05 AC 37 ms
52,344 KB
testcase_06 AC 37 ms
52,644 KB
testcase_07 AC 38 ms
53,420 KB
testcase_08 AC 40 ms
52,652 KB
testcase_09 AC 38 ms
52,828 KB
testcase_10 AC 566 ms
291,488 KB
testcase_11 AC 549 ms
293,328 KB
testcase_12 AC 527 ms
286,240 KB
testcase_13 AC 550 ms
296,940 KB
testcase_14 AC 544 ms
293,208 KB
testcase_15 AC 560 ms
296,612 KB
testcase_16 MLE -
testcase_17 MLE -
testcase_18 AC 539 ms
287,060 KB
testcase_19 AC 575 ms
298,792 KB
testcase_20 AC 575 ms
298,292 KB
testcase_21 AC 554 ms
287,324 KB
testcase_22 AC 539 ms
286,844 KB
testcase_23 AC 81 ms
78,628 KB
testcase_24 AC 84 ms
78,648 KB
testcase_25 AC 82 ms
78,624 KB
testcase_26 AC 81 ms
79,232 KB
testcase_27 AC 834 ms
368,568 KB
testcase_28 AC 858 ms
365,200 KB
testcase_29 AC 82 ms
77,696 KB
testcase_30 AC 83 ms
77,568 KB
testcase_31 AC 86 ms
78,720 KB
testcase_32 AC 82 ms
77,932 KB
testcase_33 AC 878 ms
374,640 KB
testcase_34 AC 884 ms
386,468 KB
testcase_35 AC 96 ms
82,176 KB
testcase_36 AC 104 ms
82,304 KB
testcase_37 AC 102 ms
82,304 KB
testcase_38 AC 90 ms
79,872 KB
testcase_39 AC 86 ms
79,232 KB
testcase_40 AC 89 ms
79,460 KB
testcase_41 AC 75 ms
73,344 KB
testcase_42 AC 105 ms
80,896 KB
testcase_43 AC 73 ms
73,332 KB
testcase_44 AC 69 ms
72,960 KB
testcase_45 AC 70 ms
73,600 KB
testcase_46 AC 93 ms
80,896 KB
testcase_47 AC 41 ms
51,968 KB
testcase_48 AC 39 ms
51,968 KB
testcase_49 MLE -
testcase_50 MLE -
testcase_51 AC 281 ms
178,364 KB
testcase_52 AC 274 ms
178,536 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 = data[0][1]
pre = 0

for i in range(2,n,2):
    j = -1
    while stack and data[stack[-1][0]][1]<data[i-1][1]:
        stack.pop()
    if stack:
        j,dpj,pj = stack[-1]
        pi = ((data[i-1][1]*dp % mod)+pj-(data[i-1][1]*dpj % mod))%mod
        stack.append((i-1,dp,pi))
        dpi = ((data[i][1]*pi % mod)+dp+data[i][1])%mod
        dp = dpi
    else:
        pi = data[i-1][1] * dp % mod
        stack.append((i-1,dp,pi))
        dpi = ((data[i][1]*pi % mod)+dp+data[i][1])%mod
        dp = dpi
        

print((dp*Start*End)%mod)
0