HDU 1251 统计难题(字典树)

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1251

题目思路:字典树模板题,上板子就行

板子链接传送门:https://blog.csdn.net/baodream/article/details/80685799

PS:这个题用指针始终会MLE,不知道为什么,网上的代码也会MLE,所以这个题就用数组过吧,QAQ。

代码:

#include
#include
#include
#include
#include
#include
#include
#include
#include
#include

using namespace std;

#define FOU(i,x,y) for(int i=x;i<=y;i++)
#define FOD(i,x,y) for(int i=x;i>=y;i--)
#define MEM(a,val) memset(a,val,sizeof(a))
#define PI acos(-1.0)

const double EXP = 1e-9;
typedef long long ll;
typedef unsigned long long ull;
const int INF = 0x3f3f3f3f;
const ll MINF = 0x3f3f3f3f3f3f3f3f;
const double DINF = 0xffffffffffff;
const int mod = 1e9+7;
const int N = 1e6+5;

const int MAXN = 1000005;  //数组第一维大小,字符串的个数*最大长度
struct DicTree{
    int cnt[MAXN];  //代表某个前缀的单词总个数
    int tree[MAXN][26];
    int tot;

    /*void init(){
        //特别说明多组数据才用init,否则一般不用,因为这种多个字符串输入一般都是一组数据
        MEM(cnt,0);
        MEM(tree,0);
        tot=0;
    }*/

    void Insert(char *s){
        int len = strlen(s);
        int now=0;
        for(int i=0;i

 

你可能感兴趣的:(hdu题解,字典树)