标签:std 题解 插入字符串 sizeof space win 号码 添加 code
给定\(N\)个表示电话号码的字符串,判断这N个字符串中是否存在一个为另一个的子串,存在则不兼容输入\(NO\)
\(1\leq T\leq 40\)
\(1\leq N\leq 10^{4}\)
建立一个字典树,在插入字符串的同时进行如下判断
记录每个字符串的结尾用来判断串的结尾
#include<bits/stdc++.h>
using namespace std;
#define rep(i,a,n) for(int i=a;i<n;i++)
#define per(i,a,n) for(int i=n-1;i>=a;i--)
#define ll long long
const int N=1e5+10;
int n;
int trie[N][10],tot=1;
bool rec[N];
int _;
bool insert(char *s){
bool ok=false,has_find=false;
int p=1;
for(int i=0;s[i];i++){
int c=s[i]-‘0‘;
if(!trie[p][c]) {trie[p][c]=++tot;ok=true;}
p=trie[p][c];
if(rec[p])
has_find=1;
}
rec[p]=true;
return ok && !has_find;
}
int main(){
for(scanf("%d",&_);_--;_){
memset(trie,0,sizeof trie);
memset(rec,0,sizeof rec);
tot=1;
scanf("%d",&n);
bool ok=true;
char s[20];
rep(i,0,n){
scanf("%s",s);
if(!insert(s))
ok=0;
}
if(ok) puts("YES");
else puts("NO");
}
}
标签:std 题解 插入字符串 sizeof space win 号码 添加 code
原文地址:https://www.cnblogs.com/hhyx/p/13386941.html