2019 ccpc 网络赛——hdu-6704-K-th occurrence--后缀数组+主席树
先贴个代码
/*后缀数组+主席树*/
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
const int N = 1e5 + 100;
struct node//静态主席树节点
{
int l, r, val;
}T[N * ...
原创
2019-09-06 21:57:58 ·
203 阅读 ·
0 评论