HDU 1251 統計難題

2021-08-21 20:02:25 字數 947 閱讀 1975

題意:輸入資料的第一部分是一張單詞表,每行乙個單詞,單詞的長度不超過10,乙個空行代表單詞表的結束.第二部分是一連串的提問,每行乙個提問,每個提問都是乙個字串。輸出以該字串為字首的單詞個數。

演算法:字典樹

#include 

#define pi acos(-1)

#define fastio ios_base::sync_with_stdio(false);cin.tie(0);cout.tie(0);

using

namespace

std;

typedef

long

long ll;

typedef pair pii;

const

int inf = 0x3f3f3f3f;

const ll ll_inf = 0x3f3f3f3f3f3f3f3f;

const

int maxn = 400000 + 10;

const

int mod = 1e9 + 7;

char word[20];

int sz=1;

struct node

}trie[maxn];

void _insert(char *s)

u = trie[u].child[pos];

trie[u].hcnt++;

}trie[u].f = 1;

trie[u].acnt++;

}int _find(char *s)

u = trie[u].child[pos];

}return trie[u].hcnt;

}int main()

//printf("啦啦啦啦\n");

while(cin.getline(word, 15))

return

0;}

統計難題 hdu1251

昨天在小策策 和 小超人的指導下學習了下字典樹,於是今天寫了下這個很早就想學的演算法 寫的很醜,而且還看了下課件的 include 2497868 2010 05 28 21 25 42 accepted 1251 93ms 43784k 1152 b c 悔惜晟 include include u...

HDU 1251 統計難題

problem description ignatius最近遇到乙個難題,老師交給他很多單詞 只有小寫字母組成,不會有重複的單詞出現 現在老師要他統計出以某個字串為字首的單詞數量 單詞本身也是自己的字首 input 輸入資料的第一部分是一張單詞表,每行乙個單詞,單詞的長度不超過10,它們代表的是老師...

hdu 1251統計難題

字典樹模版題 動態實現 include include include define maxn 26 struct node root void insert char str else int find char str return current count int main 靜態實現 inc...