-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Manacher's algorithm inconsistency #1393
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
adamant-pwn
merged 4 commits into
cp-algorithms:main
from
yuuurchyk:feature/manachers-algorithm-improvements
Mar 24, 2025
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
#include <bits/stdc++.h> | ||
using namespace std; | ||
|
||
#include "manacher_odd.h" | ||
|
||
string getRandomString(size_t n, uint32_t seed, char minLetter='a', char maxLetter='b') { | ||
assert(minLetter <= maxLetter); | ||
const size_t nLetters = static_cast<int>(maxLetter) - static_cast<int>(minLetter) + 1; | ||
std::uniform_int_distribution<size_t> distr(0, nLetters - 1); | ||
std::mt19937 gen(seed); | ||
|
||
string res; | ||
res.reserve(n); | ||
|
||
for (size_t i = 0; i < n; ++i) | ||
res.push_back('a' + distr(gen)); | ||
|
||
return res; | ||
} | ||
|
||
bool testManacherOdd(const std::string &s) { | ||
const auto n = s.size(); | ||
const auto d_odd = manacher_odd(s); | ||
|
||
if (d_odd.size() != n) | ||
return false; | ||
|
||
const auto inRange = [&](size_t idx) { | ||
return idx >= 0 && idx < n; | ||
}; | ||
|
||
for (size_t i = 0; i < n; ++i) { | ||
if (d_odd[i] < 0) | ||
return false; | ||
for (int d = 0; d < d_odd[i]; ++d) { | ||
const auto idx1 = i - d; | ||
const auto idx2 = i + d; | ||
|
||
if (!inRange(idx1) || !inRange(idx2)) | ||
return false; | ||
if (s[idx1] != s[idx2]) | ||
return false; | ||
} | ||
|
||
const auto idx1 = i - d_odd[i]; | ||
const auto idx2 = i + d_odd[i]; | ||
if (inRange(idx1) && inRange(idx2) && s[idx1] == s[idx2]) | ||
return false; | ||
} | ||
|
||
return true; | ||
} | ||
|
||
int main() { | ||
vector<string> testCases; | ||
|
||
testCases.push_back(""); | ||
for (size_t i = 1; i <= 25; ++i) { | ||
auto s = string{}; | ||
s.resize(i, 'a'); | ||
testCases.push_back(move(s)); | ||
} | ||
testCases.push_back("abba"); | ||
testCases.push_back("abccbaasd"); | ||
for (size_t n = 9; n <= 100; n += 10) | ||
testCases.push_back(getRandomString(n, /* seed */ n, 'a', 'd')); | ||
for (size_t n = 7; n <= 100; n += 10) | ||
testCases.push_back(getRandomString(n, /* seed */ n)); | ||
|
||
for (const auto &s: testCases) | ||
assert(testManacherOdd(s)); | ||
|
||
return 0; | ||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you also add a test on
vector<int> manacher(string s)
, please?