网站首页 站内搜索

搜索结果

查询Tags标签: 841,共有 1条记录
  • [AcWing 841] 字符串哈希

    点击查看代码 #include<iostream>using namespace std; typedef unsigned long long ULL; const int N = 1e5 + 10; const int P = 131; int h[N], p[N]; char str[N]; ULL get(int l, int r) {return h[r] - h[l - 1] * p[r - l + 1]; } int main() {int n, m;cin …

    2022/5/3 23:12:54 人评论 次浏览
扫一扫关注最新编程教程