結果

問題 No.1654 Binary Compression
ユーザー chineristACchineristAC
提出日時 2021-08-20 23:13:36
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 1,032 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 81,864 KB
実行使用メモリ 604,572 KB
最終ジャッジ日時 2024-10-14 06:45:30
合計ジャッジ時間 19,953 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 39 ms
51,840 KB
testcase_02 AC 38 ms
52,224 KB
testcase_03 AC 39 ms
52,480 KB
testcase_04 AC 39 ms
52,096 KB
testcase_05 AC 37 ms
51,840 KB
testcase_06 AC 40 ms
51,840 KB
testcase_07 AC 38 ms
51,968 KB
testcase_08 AC 38 ms
52,096 KB
testcase_09 AC 41 ms
52,352 KB
testcase_10 AC 552 ms
324,608 KB
testcase_11 AC 558 ms
327,328 KB
testcase_12 AC 542 ms
321,300 KB
testcase_13 AC 555 ms
331,608 KB
testcase_14 AC 554 ms
327,164 KB
testcase_15 AC 566 ms
331,472 KB
testcase_16 MLE -
testcase_17 MLE -
testcase_18 AC 541 ms
322,252 KB
testcase_19 AC 577 ms
334,084 KB
testcase_20 AC 575 ms
333,716 KB
testcase_21 AC 549 ms
322,124 KB
testcase_22 AC 559 ms
322,048 KB
testcase_23 AC 83 ms
78,116 KB
testcase_24 AC 82 ms
77,928 KB
testcase_25 AC 83 ms
78,056 KB
testcase_26 AC 84 ms
78,792 KB
testcase_27 AC 800 ms
425,996 KB
testcase_28 AC 823 ms
435,032 KB
testcase_29 AC 82 ms
78,176 KB
testcase_30 AC 81 ms
78,224 KB
testcase_31 AC 85 ms
79,536 KB
testcase_32 AC 82 ms
78,076 KB
testcase_33 AC 853 ms
471,928 KB
testcase_34 AC 854 ms
477,444 KB
testcase_35 AC 95 ms
82,352 KB
testcase_36 AC 103 ms
82,836 KB
testcase_37 AC 104 ms
82,444 KB
testcase_38 AC 93 ms
82,508 KB
testcase_39 AC 84 ms
79,480 KB
testcase_40 AC 88 ms
80,160 KB
testcase_41 AC 72 ms
73,648 KB
testcase_42 AC 104 ms
80,936 KB
testcase_43 AC 71 ms
73,416 KB
testcase_44 AC 71 ms
73,320 KB
testcase_45 AC 69 ms
73,320 KB
testcase_46 AC 90 ms
80,432 KB
testcase_47 AC 38 ms
53,668 KB
testcase_48 AC 37 ms
52,812 KB
testcase_49 MLE -
testcase_50 MLE -
testcase_51 AC 280 ms
189,900 KB
testcase_52 AC 274 ms
189,896 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)
comp = [data[i][1] for i in range(n)]
if n==1:
    print(comp[0]*Start*End)
    exit()

stack=[]
dp = [0]*n
dp[0] = comp[0]
pre = [0]*n

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

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

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