1471 [一本通例题1]Phone List

1471 [一本通例题1]Phone List,第1张

1471 [一本通例题1]Phone List 1471:【例题1】Phone List


时间限制: 1000 ms         内存限制: 65536 KB
提交数: 2918     通过数: 1005

【题目描述】

原题来自:POJ 3630

给定 n 个长度不超过 10 的数字串,问其中是否存在两个数字串 S,T,使得 S 是 T 的前缀,多组数据

【输入】

第一行一个整数 T,表示数据组数。

对于每组数据,第一行一个数 n,接下来 n 行输入 n 个数字串。

输出

对于每组数据,若存在两个数字串 S,T,使得 S 是 T 的前缀,则输出 NO ,否则输出 YES 。

请注意此处结果与输出的对应关系!

【输入样例】
2
3
911
97625999
91125426
5
113
12340
123440
12345
98346
【输出样例】
NO
YES
【提示】

数据范围:

对于 100% 的数据,1≤T≤40,1≤n≤104​​ 。

#include
#include
#include
#include
#include
using namespace std;
int const N=1e5+5;
int ch[N][11],tot=1;
bool bo[N];
char a[101];
bool word1(char *s){
	int l=strlen(s);
	bool f=false;
	int u=1;
		for(int i=0;i>t;
	while(t--){
		int n;
		cin>>n;
		memset(ch,0,sizeof(ch));
		memset(bo,false,sizeof(bo));
		bool o=false;
		tot=1;
		for(int k=1;k<=n;k++){
			scanf("%s",a);
			if(word1(a))o=true;
		}
		if(o==true){
			cout<<"NO"< 
 

 

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5658894.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-16
下一篇 2022-12-16

发表评论

登录后才能评论

评论列表(0条)

保存