結果
| 問題 |
No.273 回文分解
|
| コンテスト | |
| ユーザー |
cutmdo
|
| 提出日時 | 2022-09-12 03:42:23 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 25 ms / 2,000 ms |
| コード長 | 6,605 bytes |
| コンパイル時間 | 1,720 ms |
| コンパイル使用メモリ | 117,088 KB |
| 最終ジャッジ日時 | 2025-02-07 04:26:13 |
|
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 32 |
ソースコード
#define PROBLEM "https://yukicoder.me/problems/no/273"
#include <iostream>
#include <algorithm>
#include <memory>
#include <string>
#include <iostream>
#include <list>
#include <queue>
#include <vector>
#include <unordered_map>
using std::cout;
using std::cin;
auto nullLambda = [](int, const std::list<int>&) {};
class PalindromicTree {
//static constexpr auto nullLambda = [](int, const std::list<int>&) {};// c++17
class Node :public std::enable_shared_from_this<Node> {
// 最大の回文接尾辞
std::weak_ptr<Node> m_suffixLink;
// 次サイズの回文(囲む文字, 次のNode)
std::unordered_map<char, std::shared_ptr<Node>> m_edges;
// 回文の右端itr
std::list<int> m_itrs;
// 回文サイズ
const int m_size;
// xAxとなるAを探す(x=str[itr])
auto find(int itr, const std::string& s, bool flg = false) {
// rootにたどり着いた
if(m_size == -1) { return weak_from_this(); }
// 現在地"A"において"xAx"となる
if(itr - m_size - 1 >= 0 && s[itr] == s[itr - m_size - 1]) {
return weak_from_this();
}
// 見つからない
return m_suffixLink.lock()->find(itr, s, flg);
}
// 新しい回文Nodeを作成する
auto create(int itr, const std::string& s) {
// suffixLinkの探索
auto suffixLinkFrom = m_suffixLink.lock()/*->m_suffixLink.lock()*/->find(itr, s, true).lock();
// 新Nodeの作成
auto newNode = std::make_shared<Node>(
m_size + 2, (suffixLinkFrom->m_edges.find(s[itr]) == suffixLinkFrom->m_edges.end()) ?
suffixLinkFrom->m_edges.find(' ')->second :
suffixLinkFrom->m_edges.find(s[itr])->second);
m_edges.emplace(s[itr], newNode);
return std::weak_ptr<Node>(newNode);
}
public:
// constructor
Node(int size, const std::weak_ptr<Node>& suffixLink) :
m_size(size),
m_suffixLink(suffixLink) {
}
Node() :m_size(-1) {}
// 次サイズの回文を追加
auto add(int itr, const std::string& s) {
auto addRoot = find(itr, s).lock();
auto nextNode = (addRoot->m_edges.find(s[itr]) == addRoot->m_edges.end()) ?
addRoot->create(itr, s) :
std::weak_ptr<Node>(addRoot->m_edges.find(s[itr])->second);
nextNode.lock()->m_itrs.emplace_back(itr);
return nextNode;
}
// debug用
auto outputTree(const std::string& s) ->void const {
if(m_size <= 0) { cout << "root"; } else {
// 段
for(int i = 0; (i < (m_size + 1) / 2); ++i) { cout << " |"; }
cout << "- " << s.substr(*m_itrs.begin() - m_size + 1, m_size);
// 右itr
cout << " [ "; for(const auto& itr : m_itrs) { cout << itr << " "; }cout << "] ";
// suffix link
//auto p = m_suffixLink.lock();
//cout << "{" << s.substr(*p->m_itrs.begin() - p->m_size + 1, p->m_size) << "} ";
} cout << "\n";
for(const auto& edge : m_edges) {
if(m_size == -1 && edge.first == ' ') { continue; }
edge.second->outputTree(s);
}
}
// rootを決定
auto isOddRoot(const std::weak_ptr<Node>& evenRoot) {
m_suffixLink = weak_from_this();
m_edges.emplace(' ', evenRoot);
}
// ラムダ式の実行
template<class Lambda>
auto runLambda(const Lambda& lambda) {
if(m_size > 0) { lambda(m_size, m_itrs); }
}
/*
* lambda: (int size, list<int> rItr) -> void
*/
template<class Lambda, class SuffixLinkLambda = decltype(nullLambda)>
auto dfs_edges(const Lambda& lambda, const SuffixLinkLambda& slLambda = nullLambda)->void {
runLambda(lambda);
m_suffixLink.lock()->runLambda(slLambda);
for(const auto& edge : m_edges) {
edge.second->dfs_edges(lambda, slLambda);
}
}
};
// 対象となる文字列
const std::string m_s;
// 偶数長,奇数長のPalindromicTreeの根(0, -1)
std::shared_ptr<Node> m_rootOdd;
std::shared_ptr<Node> m_rootEven;
public:
// constructor
PalindromicTree(const std::string& s) :
m_s(s),
m_rootOdd(std::make_shared<Node>()),
m_rootEven(std::make_shared<Node>(0, m_rootOdd)) {
m_rootOdd->isOddRoot(m_rootEven);
auto root = m_rootOdd;
for(int r = 0; r < s.size(); ++r) {
root = root->add(r, s).lock();
}
}
/*
* lambda: (int size, list<int> rItr) -> void
*/
template<class Lambda>
auto dfs_edges(const Lambda& lambda) {
m_rootOdd->dfs_edges(lambda);
}
/*
* かなり強引な実装
* lambda: (int from, int to) -> void
*/
template<class Lambda>
auto dp_suffixLink(const Lambda& lambda) {
// 森の生成,探索順序の決定
int from;
std::unordered_map<int, int> graph;
std::vector<int> orderCount(m_s.size());
m_rootOdd->dfs_edges([&](int size, const std::list<int>& rItrs) {
from = rItrs.front();
}, [&](int size, const std::list<int>& rItrs) {
int to = rItrs.front();
graph.emplace(from, to);
++orderCount[to];
});
// 探索順序に従って処理
std::queue<int> q;
for(int i = 0; i < m_s.size(); ++i)if(orderCount[i] == 0) { q.emplace(i); }
while(!q.empty()) {
int from = q.front();
q.pop();
auto range = graph.equal_range(from);
for(auto itr = range.first; itr != range.second; ++itr) {
int to = itr->second;
--orderCount[to];
lambda(from, to);
if(orderCount[to] == 0) { q.emplace(to); }
}
}
}
};
using ll = long long;
using std::cout;
using std::cin;
constexpr char endl = '\n';
struct Preprocessing { Preprocessing() { std::cin.tie(0); std::ios::sync_with_stdio(0); }; }_Preprocessing;
signed main() {
std::string s;
cin >> s;
auto p = PalindromicTree(s);
ll ans = 0;
p.dfs_edges([&](ll size, const auto& _) {
if(size < s.size()) { ans = std::max(ans, size); }
});
cout << ans << endl;
}
cutmdo