06
2017-07
2017-07
UVALive 5913 Dictionary Size (字典树)
题意:~
思路:
#include <bits/stdc++.h>
using namespace std;
const int N = 400050;
struct Trie {
int next[N][26];
int root, L;
int num[26];
int newnode...
07月06日
2,001
14
2016-05
2016-05
字典树模板
const int MAXN=100100;
char s[MAXN],q[MAXN];
struct Trie
{
int next[3000100][26],end[3000100];
int root,L;
int newnode()
{
for(int i=0; i<26; i...
05月14日
2,278