HDU 1251(字典树Trie)

模板题。注意一下输入都用gets(),不然WA

#include
using namespace std;
#define inf 0x3f3f3f3f
#define ll long long
const int maxn=200005;
const double eps=1e-8;
const double PI = acos(-1.0);
#define lowbit(x) (x&(-x))
int trie[4000001][26],len,root,tot,sum[4000001];
bool p;
int n,m;
char s[11];
void insert()
{
    len=strlen(s);
    root=0;
    for(int i=0;i

 

你可能感兴趣的:(字符串,字典树Trie)