牛客网暑期ACM多校训练营(第三场)E Sort String【字符串hash】
E Sort String: 常数卡到爆。。。前向星写到爆就是比不过vector。。。 hash过后,直接模拟就行,正解好像是KMP,总之卡到爆。。。#include <bits/stdc++.h>using namespace std;typedef unsigned long long ull;const int MAXN = 2e6 + 10;ull base ...