Ultraviolet A 11732-strcmp () Anyone? (Trie)

Source: Internet
Author: User

Ultraviolet A 11732-strcmp () Anyone? (Trie)
Ultraviolet A 11732-strcmp () Anyone?

Question Link

Meaning: given some strings, we need to compare them by two or two times. (Note: if a character is the same, it must be compared to '\ 0' for two times)

Idea: Create a Trie tree. In each build process, the successor node is the same node. We need to compare the ans + val * 2 twice. Otherwise, the ans + val nodes are different.

Code:

#include 
 
  #include 
  
   const int N = 1005;const int MAXN = 4000005;int n;char str[N];long long ans;struct Node {    char c;    int val;} node[MAXN];int first[MAXN], next[MAXN], sz;void init() {    ans = 0;    sz = 1;    first[0] = 0; next[0] = 0; node[0].val = 0;}void insert(char *str) {    int u = 0, len = strlen(str);    for (int i = 0; i <= len; i++) {bool flag = true;int v, tmp;for (v = first[u]; v; v = next[v]) {    if (node[v].c == str[i]) {tmp = v;flag = false;ans += node[v].val * 2;    }    else ans += node[v].val;}if (flag) {    v = sz++;    node[v].c = str[i];    node[v].val = 0;    first[v] = 0;    next[v] = first[u];    first[u] = v;}else v = tmp;u = v;node[u].val++;    }}int main() {    int cas = 0;    while (~scanf("%d", &n) && n) {init();while (n--) {    scanf("%s", str);    insert(str);}printf("Case %d: %lld\n", ++cas, ans);    }    return 0;}
  
 


Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.