统计难题 HDU - 1251 + Phone List HDU - 1671

2024-02-22 19:18

本文主要是介绍统计难题 HDU - 1251 + Phone List HDU - 1671,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

点击打开链接

两道字典树模板 没啥说的 借鉴博客点击打开链接

1251可能是哪里有bug hdu上用G++提交就会MLE 只能过C++ 待解。。

但用同样方法写1671就没问题 难道是数据水

 

hdu1251

#include <cstdio>
#include <cstring>
#include <algorithm>
using namespace std;struct node
{node *next[26];int cnt;
};node *root;void getnode(node *& ptr)
{int i;ptr=new node;for(i=0;i<26;i++) ptr->next[i]=NULL;ptr->cnt=0;
}void update(node *ptr,char *ch,int cur,int len)
{if(cur==len) return;if(ptr->next[ch[cur]-'a']==NULL) getnode(ptr->next[ch[cur]-'a']);ptr->next[ch[cur]-'a']->cnt++;update(ptr->next[ch[cur]-'a'],ch,cur+1,len);
}int query(node* ptr,char *ch,int cur,int len)
{if(ptr->next[ch[cur]-'a']==NULL) return 0;if(cur==len-1) return ptr->next[ch[cur]-'a']->cnt;return query(ptr->next[ch[cur]-'a'],ch,cur+1,len);
}void destruct(node *ptr)
{int i;for(i=0;i<26;i++){if(ptr->next[i]!=NULL) destruct(ptr->next[i]);}delete ptr;
}int main()
{int len;char ch[20];getnode(root);while(gets(ch)&&ch[0]!=0){len=strlen(ch);update(root,ch,0,len);}while(gets(ch)&&ch[0]!=0){len=strlen(ch);printf("%d\n",query(root,ch,0,len));}destruct(root);return 0;
}

 

hdu1671

指针版

#include <bits/stdc++.h>
using namespace std;struct node
{node *next[10];int cnt;
};node *root;
int n;void getnode(node *& ptr)
{int i;ptr=new node;for(i=0;i<10;i++) ptr->next[i]=NULL;ptr->cnt=0;
}void destruct(node *ptr)
{int i;for(i=0;i<10;i++){if(ptr->next[i]!=NULL){destruct(ptr->next[i]);}}delete ptr;
}int update(node *ptr,char *ch,int flag1,int flag2,int cur,int len)
{if(ptr->next[ch[cur]-'0']==NULL){flag1=1;getnode(ptr->next[ch[cur]-'0']);}if(ptr->next[ch[cur]-'0']->cnt!=0) flag2=0;if(cur==len-1){ptr->next[ch[cur]-'0']->cnt=1;return flag1&flag2;//flag1判断当前串是不是之前某个串的前缀 flag2判断当前串是否已经出现子串}return update(ptr->next[ch[cur]-'0'],ch,flag1,flag2,cur+1,len);
}int main()
{int t,res;char ch[20];scanf("%d",&t);while(t--){getnode(root);scanf("%d",&n);res=1;while(n--){scanf("%s",ch);if(res) res=update(root,ch,0,1,0,strlen(ch));}if(res) printf("YES\n");else printf("NO\n");destruct(root);}return 0;
}

数组版

#include <bits/stdc++.h>
using namespace std;struct node
{int next[10];int cnt;
};node tree[100010];
int num;void init()
{memset(tree,0,sizeof(tree));num=1;
}int update(char *ch,int f1,int f2)
{int len,cur,i,id;len=strlen(ch),cur=0;for(i=0;i<len;i++){id=ch[i]-'0';if(tree[cur].next[id]==0){tree[cur].next[id]=num++;f1=1;}if(tree[tree[cur].next[id]].cnt) f2=0;if(i==len-1) tree[tree[cur].next[id]].cnt=1;cur=tree[cur].next[id];}return f1&f2;
}int main()
{int t,n,res;char ch[20];scanf("%d",&t);while(t--){init();scanf("%d",&n);res=1;while(n--){scanf("%s",ch);if(res) res=update(ch,0,1);}if(res) printf("YES\n");else printf("NO\n");}return 0;
}

 

这篇关于统计难题 HDU - 1251 + Phone List HDU - 1671的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/736228

相关文章

opencv实现像素统计的示例代码

《opencv实现像素统计的示例代码》本文介绍了OpenCV中统计图像像素信息的常用方法和函数,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一... 目录1. 统计像素值的基本信息2. 统计像素值的直方图3. 统计像素值的总和4. 统计非零像素的数量

如何使用 Bash 脚本中的time命令来统计命令执行时间(中英双语)

《如何使用Bash脚本中的time命令来统计命令执行时间(中英双语)》本文介绍了如何在Bash脚本中使用`time`命令来测量命令执行时间,包括`real`、`user`和`sys`三个时间指标,... 使用 Bash 脚本中的 time 命令来统计命令执行时间在日常的开发和运维过程中,性能监控和优化是不

hdu1496(用hash思想统计数目)

作为一个刚学hash的孩子,感觉这道题目很不错,灵活的运用的数组的下标。 解题步骤:如果用常规方法解,那么时间复杂度为O(n^4),肯定会超时,然后参考了网上的解题方法,将等式分成两个部分,a*x1^2+b*x2^2和c*x3^2+d*x4^2, 各自作为数组的下标,如果两部分相加为0,则满足等式; 代码如下: #include<iostream>#include<algorithm

【C++】_list常用方法解析及模拟实现

相信自己的力量,只要对自己始终保持信心,尽自己最大努力去完成任何事,就算事情最终结果是失败了,努力了也不留遗憾。💓💓💓 目录   ✨说在前面 🍋知识点一:什么是list? •🌰1.list的定义 •🌰2.list的基本特性 •🌰3.常用接口介绍 🍋知识点二:list常用接口 •🌰1.默认成员函数 🔥构造函数(⭐) 🔥析构函数 •🌰2.list对象

usaco 1.3 Mixing Milk (结构体排序 qsort) and hdu 2020(sort)

到了这题学会了结构体排序 于是回去修改了 1.2 milking cows 的算法~ 结构体排序核心: 1.结构体定义 struct Milk{int price;int milks;}milk[5000]; 2.自定义的比较函数,若返回值为正,qsort 函数判定a>b ;为负,a<b;为0,a==b; int milkcmp(const void *va,c

poj 3974 and hdu 3068 最长回文串的O(n)解法(Manacher算法)

求一段字符串中的最长回文串。 因为数据量比较大,用原来的O(n^2)会爆。 小白上的O(n^2)解法代码:TLE啦~ #include<stdio.h>#include<string.h>const int Maxn = 1000000;char s[Maxn];int main(){char e[] = {"END"};while(scanf("%s", s) != EO

hdu 2093 考试排名(sscanf)

模拟题。 直接从教程里拉解析。 因为表格里的数据格式不统一。有时候有"()",有时候又没有。而它也不会给我们提示。 这种情况下,就只能它它们统一看作字符串来处理了。现在就请出我们的主角sscanf()! sscanf 语法: #include int sscanf( const char *buffer, const char *format, ... ); 函数sscanf()和

hdu 2602 and poj 3624(01背包)

01背包的模板题。 hdu2602代码: #include<stdio.h>#include<string.h>const int MaxN = 1001;int max(int a, int b){return a > b ? a : b;}int w[MaxN];int v[MaxN];int dp[MaxN];int main(){int T;int N, V;s

hdu 1754 I Hate It(线段树,单点更新,区间最值)

题意是求一个线段中的最大数。 线段树的模板题,试用了一下交大的模板。效率有点略低。 代码: #include <stdio.h>#include <string.h>#define TREE_SIZE (1 << (20))//const int TREE_SIZE = 200000 + 10;int max(int a, int b){return a > b ? a :

hdu 1166 敌兵布阵(树状数组 or 线段树)

题意是求一个线段的和,在线段上可以进行加减的修改。 树状数组的模板题。 代码: #include <stdio.h>#include <string.h>const int maxn = 50000 + 1;int c[maxn];int n;int lowbit(int x){return x & -x;}void add(int x, int num){while