每日总结(2022/2/10)
1.上午(2h)
写出了两道题(map是个好东西)
P3370 【模板】字符串哈希 - 洛谷 | 计算机科学教育新生态 (luogu.com.cn)
P2957 [USACO09OCT]Barn Echoes G - 洛谷 | 计算机科学教育新生态 (luogu.com.cn)
2.下午加晚上(7h)
写出了一道题
P1102 A-B 数对 - 洛谷 | 计算机科学教育新生态 (luogu.com.cn)
最后一道题写了我将近快6个小时。。。我真的心态崩了.
最后还是看了同学的代码有了点启发,感觉懂了但是又说不出来。。。
#include
using namespace std;
int n;
string s,ans;
int nxt[1000011];
void Next(string s)//kmp算法
{
int j=0;
int l=s.size();
s=' '+s;
for(int i=2; i<=l; i++)
{
共有 0 条评论