結果

問題 No.2924 <===Super Spaceship String===>
ユーザー ryuuichiryuuichi
提出日時 2024-10-12 16:57:36
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 1,513 bytes
コンパイル時間 439 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 17,952 KB
最終ジャッジ日時 2024-10-12 16:58:24
合計ジャッジ時間 3,868 ms
ジャッジサーバーID
(参考情報)
judge / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
17,952 KB
testcase_01 AC 33 ms
10,880 KB
testcase_02 AC 26 ms
11,008 KB
testcase_03 AC 36 ms
10,880 KB
testcase_04 AC 25 ms
10,880 KB
testcase_05 TLE -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

S=list(input())
#ラングトン符号化→スタック
s=[]
N=len(S)
for i in range(N):
    s.append([S[i],1])
ss=[s[0]]
for i in range(1,N):
    
    if ss[-1][0]==s[i][0]:
        ss[-1][1]+=s[i][1]
    else:
        ss.append(s[i])


mai=0
stac=[]
for i in range(len(ss)):
    f=True
    while f:
        f=False
        if len(stac)>=2:
            if stac[-1][0]==stac[-2][0]:
                f=True
                stac[-1][1]+=stac[-2][1]
        if len(stac)>=3:
            if stac[-3][0]=="<" and stac[-2][0]=="=" and stac[-1][0]==">":
                f=True
                mai+=stac[-2][1]+2
                tmp=[stac[-3][1]-1,stac[-1][1]-1]
                for _ in range(3):
                    stac.pop()
                if tmp[0]:
                    stac.append(["<",tmp[0]])
                if tmp[1]:
                    stac.append([">",tmp[1]])


    stac.append(ss[i])


    f=True
    while f:
        f=False
        if len(stac)>=2:
            if stac[-1][0]==stac[-2][0]:
                f=True
                stac[-1][1]+=stac[-2][1]
        if len(stac)>=3:
            if stac[-3][0]=="<" and stac[-2][0]=="=" and stac[-1][0]==">":
                f=True
                mai+=stac[-2][1]+2
                tmp=[stac[-3][1]-1,stac[-1][1]-1]
                for _ in range(3):
                    stac.pop()
                if tmp[0]:
                    stac.append(["<",tmp[0]])
                if tmp[1]:
                    stac.append([">",tmp[1]])
    
    
print(N-mai)
    
0