結果

問題 No.2606 Mirror Relay
ユーザー novaandcabralnovaandcabral
提出日時 2024-04-13 07:50:20
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 83 ms / 2,000 ms
コード長 2,530 bytes
コンパイル時間 1,134 ms
コンパイル使用メモリ 92,704 KB
実行使用メモリ 50,980 KB
最終ジャッジ日時 2024-10-02 23:56:48
合計ジャッジ時間 2,954 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 1 ms
5,376 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 1 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 3 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 1 ms
5,376 KB
testcase_30 AC 1 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 1 ms
5,376 KB
testcase_33 AC 1 ms
5,376 KB
testcase_34 AC 1 ms
5,376 KB
testcase_35 AC 2 ms
5,376 KB
testcase_36 AC 1 ms
5,376 KB
testcase_37 AC 2 ms
5,376 KB
testcase_38 AC 1 ms
5,376 KB
testcase_39 AC 12 ms
5,376 KB
testcase_40 AC 12 ms
5,376 KB
testcase_41 AC 12 ms
5,376 KB
testcase_42 AC 11 ms
5,376 KB
testcase_43 AC 12 ms
5,376 KB
testcase_44 AC 12 ms
5,376 KB
testcase_45 AC 12 ms
5,376 KB
testcase_46 AC 12 ms
5,376 KB
testcase_47 AC 12 ms
5,376 KB
testcase_48 AC 12 ms
5,376 KB
testcase_49 AC 29 ms
15,932 KB
testcase_50 AC 29 ms
17,192 KB
testcase_51 AC 30 ms
17,748 KB
testcase_52 AC 25 ms
13,868 KB
testcase_53 AC 30 ms
17,996 KB
testcase_54 AC 29 ms
16,684 KB
testcase_55 AC 45 ms
27,376 KB
testcase_56 AC 28 ms
16,696 KB
testcase_57 AC 27 ms
14,572 KB
testcase_58 AC 36 ms
22,652 KB
testcase_59 AC 12 ms
5,376 KB
testcase_60 AC 12 ms
5,376 KB
testcase_61 AC 12 ms
5,376 KB
testcase_62 AC 12 ms
5,376 KB
testcase_63 AC 12 ms
5,376 KB
testcase_64 AC 11 ms
5,376 KB
testcase_65 AC 11 ms
5,376 KB
testcase_66 AC 12 ms
5,376 KB
testcase_67 AC 12 ms
5,376 KB
testcase_68 AC 12 ms
5,376 KB
testcase_69 AC 83 ms
50,980 KB
testcase_70 AC 2 ms
5,376 KB
testcase_71 AC 2 ms
5,376 KB
testcase_72 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <unordered_map>
#define int long long
using namespace std;

class PalindromicTree {
private:
    vector<char> st;
    vector<int> length;
    vector<int> parent;
    vector<int> count;
    vector<unordered_map<char, int>> link;
    int lastNodeIdx;

public:
    PalindromicTree() {
        st.push_back(0);
        length.push_back(-1);
        length.push_back(0);
        parent.push_back(0);
        parent.push_back(0);
        count.push_back(0);
        count.push_back(0);
        link.push_back({});
        link.push_back({});
        lastNodeIdx = 0;
    }

    void add(char v) {
        st.push_back(v);
        int prevNodeIdx = lastNodeIdx;
        int nextNodeIdx = lastNodeIdx;
        while (true) {
            int head = length[nextNodeIdx] + 2;
            if (head <= st.size() && st[st.size() - head] == st.back()) {
                break;
            }
            nextNodeIdx = parent[nextNodeIdx];
        }
        int nextLen = length[nextNodeIdx] + 2;
        if (link[nextNodeIdx].count(v)) {
            lastNodeIdx = link[nextNodeIdx][v];
            count[lastNodeIdx]++;
            return;
        }
        lastNodeIdx = length.size();
        length.push_back(nextLen);
        if (nextLen == 1) {
            parent.push_back(1);
        } else {
            int prevNodeIdx = parent[nextNodeIdx];
            while (true) {
                int head = length[prevNodeIdx] + 2;
                if (head <= st.size() && st[st.size() - head] == st.back()) {
                    break;
                }
                prevNodeIdx = parent[prevNodeIdx];
            }
            parent.push_back(link[prevNodeIdx][v]);
        }
        count.push_back(1);
        link[nextNodeIdx][v] = lastNodeIdx;
        link.push_back({});
    }

    int maxScore() {
        int nodeCount = length.size();
        vector<int> score(nodeCount, 0);
        vector<int> tempCount = count;
        for (int i = nodeCount - 1; i >= 2; i--) {
            tempCount[parent[i]] += tempCount[i];
        }
        for (int i = 2; i < nodeCount; i++) {
            score[i] = score[parent[i]] + length[i] * tempCount[i];
        }
        int maxScore = 0;
        for (int s : score) {
            maxScore = max(maxScore, s);
        }
        return maxScore;
    }
};

signed main() {
    string s;
    cin >> s;
    PalindromicTree pt;
    for (int i = s.length() - 1; i >= 0; i--) {
        pt.add(s[i]);
    }
    cout << pt.maxScore() << endl;
    return 0;
}
0