统计难题

http://acm.hdu.edu.cn/showproblem.php?pid=1251

题解:字典树裸题

/*
*@Author:   STZG
*@Language: C++
*/
#include 
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
//#define DEBUG
#define RI register int
using namespace std;
typedef long long ll;
//typedef __int128 lll;
const int N=10000000+10;
const int MOD=1e9+7;
const double PI = acos(-1.0);
const double EXP = 1E-8;
const int INF = 0x3f3f3f3f;
int t,n,m,k,q;
int ans,cnt,flag,temp;
int a[N][26];
char str[10];
bool en[N];
int sum[N];
void insert(string s){
    int len=s.size(),p=0;
    for(int i=0;i

 

你可能感兴趣的:(#,C++)