摘要: 题意:给你一个串,问期中至少出现m次的最长子串及其起始位置的坐标。思路:hash+LCP+二分答案 1 #include 2 #include 3 #include 4 using namespace std; 5 6 const int maxn = 40000 + 10; 7 const in... 阅读全文
posted @ 2015-12-20 20:34 yyblues 阅读(191) 评论(0) 推荐(0) 编辑