此夜梨花落
此夜梨花落
全部文章
分类
归档
标签
去牛客网
登录
/
注册
此夜梨花落的博客
全部文章
(共2篇)
题解 | 接头密匙
#include<bits/stdc++.h> using namespace std; const int MAXN = 2e6 + 10; class Solution { public: int trieTree[MAXN][12]; int pass[MAX...
2025-09-13
0
30
题解 | 字典树的实现
#include<bits/stdc++.h> using namespace std; const int MAXN=150000+10; int trieTree[MAXN][26]; int pass[MAXN]; int end_[MAXN]; int cnt; void b...
2025-09-13
0
28