题解列表
c++ 2796简单解法
摘要:#include <iostream>#include <iomanip>using namespace std;int main() { int n; cin >>……
2544:N内求和两种方法
摘要:方法1 for循环#include <iostream>using namespace std;int main() { int n; cin >> n; int num = ……
Manacher算法O(n)时间复杂度求解回文子串
摘要:算法基础:**manacher算法**(叫**马拉车算法**太Low了😂)manacher算法是一个很质朴的算法,通俗来讲就是“**已掌握信息能用就用,不能用就中心扩展**”,我认为只要看透这个递……