牛客练习赛11-B-假的字符串(字典树+拓扑)

题目描述

给定n个字符串,互不相等,你可以任意指定字符之间的大小关系(即重定义字典序),求有多少个串可能成为字典序最小的串,并输出它们

题目链接:https://www.nowcoder.com/acm/contest/59/B

题解:每一个串如果有一个串是它的前缀,则肯定不行否则每次从这个字母向同一个父亲的其他字母连边,表示这个大小关系必须存在如果出现环,就出现矛盾了。可以通过拓扑排序找环

#include
#include
#include
#include
#include
#include
using namespace std;
struct node
{
	int val,to[30];
	node()
	{
		memset(to,0,sizeof(to));
		val=0;
	}
}a[250000];
int root,cnt,in[30],edge[30][30];
vectorans;
string s[30005];
int newnode()
{
	++cnt;
	a[cnt]=node();
	return cnt;
}
void insert(string s)
{
	int len=s.size();
	int i,now=root;
	for(i=0;i> s[i];
		insert(s[i]);
	}
	for(i=1;i<=n;i++)
		if(find(s[i]))
			ans.push_back(i);
	sort(ans.begin(),ans.end());
	printf("%d\n",ans.size());
	for(i=0;i


你可能感兴趣的:(字典树)