結果

問題 No.2606 Mirror Relay
ユーザー 👑 amentorimaruamentorimaru
提出日時 2023-11-02 00:51:40
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 2,256 bytes
コンパイル時間 317 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 124,108 KB
最終ジャッジ日時 2024-09-27 17:42:59
合計ジャッジ時間 10,700 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
60,688 KB
testcase_01 AC 41 ms
52,888 KB
testcase_02 AC 41 ms
54,048 KB
testcase_03 AC 41 ms
53,108 KB
testcase_04 AC 54 ms
64,056 KB
testcase_05 AC 54 ms
65,292 KB
testcase_06 AC 53 ms
64,700 KB
testcase_07 AC 53 ms
64,796 KB
testcase_08 AC 54 ms
64,496 KB
testcase_09 AC 53 ms
65,164 KB
testcase_10 AC 55 ms
63,676 KB
testcase_11 AC 57 ms
64,984 KB
testcase_12 AC 58 ms
66,536 KB
testcase_13 AC 54 ms
65,672 KB
testcase_14 AC 41 ms
53,440 KB
testcase_15 AC 40 ms
52,768 KB
testcase_16 AC 40 ms
52,624 KB
testcase_17 AC 42 ms
54,336 KB
testcase_18 AC 45 ms
58,988 KB
testcase_19 AC 78 ms
74,628 KB
testcase_20 AC 74 ms
73,120 KB
testcase_21 AC 76 ms
72,764 KB
testcase_22 AC 77 ms
74,732 KB
testcase_23 AC 75 ms
72,964 KB
testcase_24 AC 80 ms
74,812 KB
testcase_25 AC 71 ms
72,724 KB
testcase_26 AC 62 ms
68,120 KB
testcase_27 AC 74 ms
73,148 KB
testcase_28 AC 80 ms
74,508 KB
testcase_29 AC 57 ms
67,064 KB
testcase_30 AC 56 ms
65,584 KB
testcase_31 AC 60 ms
68,348 KB
testcase_32 AC 61 ms
67,276 KB
testcase_33 AC 63 ms
69,476 KB
testcase_34 AC 56 ms
65,036 KB
testcase_35 AC 59 ms
66,140 KB
testcase_36 AC 61 ms
67,808 KB
testcase_37 AC 56 ms
64,844 KB
testcase_38 AC 55 ms
65,744 KB
testcase_39 AC 155 ms
90,160 KB
testcase_40 AC 150 ms
89,916 KB
testcase_41 AC 151 ms
89,864 KB
testcase_42 AC 151 ms
90,148 KB
testcase_43 AC 152 ms
89,756 KB
testcase_44 AC 154 ms
89,748 KB
testcase_45 AC 153 ms
90,248 KB
testcase_46 AC 149 ms
90,256 KB
testcase_47 AC 154 ms
89,744 KB
testcase_48 AC 153 ms
90,720 KB
testcase_49 AC 1,899 ms
116,716 KB
testcase_50 TLE -
testcase_51 -- -
testcase_52 -- -
testcase_53 -- -
testcase_54 -- -
testcase_55 -- -
testcase_56 -- -
testcase_57 -- -
testcase_58 -- -
testcase_59 -- -
testcase_60 -- -
testcase_61 -- -
testcase_62 -- -
testcase_63 -- -
testcase_64 -- -
testcase_65 -- -
testcase_66 -- -
testcase_67 -- -
testcase_68 -- -
testcase_69 -- -
testcase_70 -- -
testcase_71 -- -
testcase_72 -- -
権限があれば一括ダウンロードができます

ソースコード

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):
        pt.add(s[i])
    nodeCount = len(pt.length)
    count=[0]*nodeCount
    for i in range(nodeCount):
        node=i
        while node>1:
            count[node]+=pt.count[i]
            node=pt.parent[node]
    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