結果

問題 No.2606 Mirror Relay
ユーザー 👑 amentorimaruamentorimaru
提出日時 2023-11-02 11:58:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 289 ms / 2,000 ms
コード長 2,198 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 81,700 KB
実行使用メモリ 200,860 KB
最終ジャッジ日時 2024-01-02 13:43:34
合計ジャッジ時間 9,408 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,460 KB
testcase_01 AC 35 ms
53,460 KB
testcase_02 AC 35 ms
53,460 KB
testcase_03 AC 36 ms
53,460 KB
testcase_04 AC 49 ms
64,212 KB
testcase_05 AC 48 ms
64,212 KB
testcase_06 AC 48 ms
64,216 KB
testcase_07 AC 49 ms
64,212 KB
testcase_08 AC 52 ms
64,216 KB
testcase_09 AC 51 ms
64,228 KB
testcase_10 AC 49 ms
64,212 KB
testcase_11 AC 48 ms
64,212 KB
testcase_12 AC 47 ms
64,212 KB
testcase_13 AC 49 ms
64,216 KB
testcase_14 AC 38 ms
53,460 KB
testcase_15 AC 37 ms
53,460 KB
testcase_16 AC 37 ms
53,460 KB
testcase_17 AC 37 ms
53,460 KB
testcase_18 AC 39 ms
53,460 KB
testcase_19 AC 68 ms
73,304 KB
testcase_20 AC 68 ms
73,328 KB
testcase_21 AC 66 ms
71,232 KB
testcase_22 AC 81 ms
76,924 KB
testcase_23 AC 68 ms
73,316 KB
testcase_24 AC 65 ms
71,232 KB
testcase_25 AC 59 ms
68,512 KB
testcase_26 AC 55 ms
68,480 KB
testcase_27 AC 67 ms
73,328 KB
testcase_28 AC 68 ms
73,320 KB
testcase_29 AC 50 ms
64,224 KB
testcase_30 AC 50 ms
64,224 KB
testcase_31 AC 51 ms
64,224 KB
testcase_32 AC 52 ms
66,292 KB
testcase_33 AC 53 ms
66,292 KB
testcase_34 AC 53 ms
66,288 KB
testcase_35 AC 51 ms
64,224 KB
testcase_36 AC 54 ms
66,304 KB
testcase_37 AC 53 ms
66,304 KB
testcase_38 AC 54 ms
66,316 KB
testcase_39 AC 142 ms
89,832 KB
testcase_40 AC 141 ms
89,708 KB
testcase_41 AC 140 ms
89,632 KB
testcase_42 AC 142 ms
90,036 KB
testcase_43 AC 138 ms
89,700 KB
testcase_44 AC 137 ms
89,632 KB
testcase_45 AC 137 ms
89,720 KB
testcase_46 AC 137 ms
89,924 KB
testcase_47 AC 139 ms
89,912 KB
testcase_48 AC 137 ms
89,728 KB
testcase_49 AC 198 ms
117,028 KB
testcase_50 AC 202 ms
118,032 KB
testcase_51 AC 203 ms
121,428 KB
testcase_52 AC 166 ms
110,044 KB
testcase_53 AC 191 ms
118,320 KB
testcase_54 AC 204 ms
117,516 KB
testcase_55 AC 231 ms
138,364 KB
testcase_56 AC 195 ms
118,144 KB
testcase_57 AC 170 ms
110,736 KB
testcase_58 AC 214 ms
124,164 KB
testcase_59 AC 145 ms
90,040 KB
testcase_60 AC 143 ms
90,360 KB
testcase_61 AC 140 ms
89,684 KB
testcase_62 AC 145 ms
89,996 KB
testcase_63 AC 138 ms
90,040 KB
testcase_64 AC 133 ms
89,912 KB
testcase_65 AC 143 ms
89,928 KB
testcase_66 AC 139 ms
89,904 KB
testcase_67 AC 139 ms
89,776 KB
testcase_68 AC 140 ms
90,264 KB
testcase_69 AC 289 ms
200,860 KB
testcase_70 AC 37 ms
53,460 KB
testcase_71 AC 37 ms
53,460 KB
testcase_72 AC 36 ms
53,460 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
def read_values(): return tuple(map(int, input().split()))
def read_list(): return list(map(int, input().split()))

class PalindromicTree:
    def __init__(self):
        self.st=[]
        self.length=[-1,0]
        self.parent=[0,0]
        self.count=[0,0]
        self.link=[dict() for _ in range(2)]
        self.lastNodeIdx=0
        
    def add(self,v):
        self.st.append(v)
        prevNodeIdx=self.lastNodeIdx
        nextNodeIdx=self.lastNodeIdx
        while True:
            head = self.length[nextNodeIdx] + 2
            if head <= len(self.st) and self.st[-head]==self.st[-1]:
                break
            nextNodeIdx=self.parent[nextNodeIdx]
        nextLen=self.length[nextNodeIdx]+2
        if v in self.link[nextNodeIdx].keys():
            self.lastNodeIdx=self.link[nextNodeIdx][v]
            self.count[self.lastNodeIdx]+=1
            return
        self.lastNodeIdx=len(self.length)
        self.length.append(nextLen)
        if self.length[-1]==1:
            self.parent.append(1)
        else:
            prevNodeIdx=self.parent[nextNodeIdx]
            while True:
                head = self.length[prevNodeIdx] + 2
                if head <= len(self.st) and self.st[-head]==self.st[-1]:
                    break
                prevNodeIdx=self.parent[prevNodeIdx]
            self.parent.append(self.link[prevNodeIdx][v])
        self.count.append(1)
        self.link[nextNodeIdx][v]=self.lastNodeIdx
        self.link.append(dict())

def main():  
    s=input()
    pt = PalindromicTree()
    for i in range(len(s)-1,-1,-1):
        pt.add(s[i])
    nodeCount = len(pt.length)
    count=pt.count[:]
    for i in range(nodeCount-1,1,-1):
        count[pt.parent[i]]+=count[i]
    score=[-1]*nodeCount
    score[0]=0
    score[1]=0
    for i in range(nodeCount):
        if score[i]!=-1:
            continue
        stk=[i]
        while score[stk[-1]]==-1:
            stk.append(pt.parent[stk[-1]])
        tmp=score[stk[-1]]
        stk.pop()
        for v in stk[::-1]:
            tmp+=pt.length[v]*count[v]
            score[v]=tmp
    print(max(score))
            
if __name__ == "__main__":
    main()
0