当前你的浏览器版本过低,网站已在兼容模式下运行,兼容模式仅提供最小功能支持,网站样式可能显示不正常。
请尽快升级浏览器以体验网站在线编辑、在线运行等功能。

建议使用的浏览器:

谷歌Chrome 火狐Firefox Opera浏览器 微软Edge浏览器 QQ浏览器 360浏览器 傲游浏览器

5487:Difference of Languages

题目描述
A regular language can be represented as a deterministic finite automaton (DFA). A DFA contains a finite set of states $Q$ and a finite set of input symbols called the alphabet $Σ$. Initially, the DFA is positioned at the start state $q_0∈Q$. Given the transition function $δ(q,a)$ and an input symbol a, the DFA transit to state $δ(q,a)$ if its current state is $q$.
Let $w=a_1 a_2…a_n$ be a string over the alphabet $Σ$. According to the above definition, the DFA transits through the following sequence of states.
$$q_0,q_1=δ(q_0,a_1 ),q_2=δ(q_1,a_2 ),…,q_n=δ(q_{n-1},a_n )$$
The DFA also contains a set of accept states $F\subseteq Q$. If the last state $q_n$ is an accept state, we say that the DFA accepts the string $w$. The set of accepted strings is referred as the language that the DFA represents.
You are given two DFAs, and the languages that they represent may be different. You want to find the difference between the two languages. Specifically, you are trying to find a string that is accepted by one DFA but not accepted by the other DFA. As there could be multiple such strings, you only want the shortest one. If there are still multiple such strings, you would like the smallest one in lexicographical order.

输入解释
The first line of input contains a number $T$ indicating the number of test cases ($T≤200$).
Each test case contains the description of two DFAs.
For the first DFA, the first line contains three integers $N$, $M$, and $K$, indicating the number of states, the number of rules describing the transition function, and the number of accept states ($1≤K≤N≤1000,0≤M≤26N$). The states are numbered from 0 to $N – 1$. The start state is always 0.
The second line contains $K$ integers representing the accept states. All these numbers are distinct.
Each of the next $M$ lines consists of two states $p$ and $q$, and an input symbol $a$, which means that the DFA transits from $p$ to $q$ when it receives the symbol $a$. You may assume that the alphabet in consideration consists of the 26 lowercase letters (a-z). It is guaranteed that, given $p$ and $a$, the next state $q$ is unique.
The description of the second DFA follows the same format as the above.
输出解释
For each test case, output a single line consisting of “Case #X: Y”. $X$ is the test case number starting from 1. $Y$ is the shortest string that is accepted by one DFA but not accepted by the other DFA. If no such string exists, output the digit “0” instead. Note that an empty string is also considered a string.
输入样例
2
3 3 1
2
0 1 a
1 2 b
2 0 c
4 4 1
3
0 1 a
1 2 b
2 3 c
3 0 a
3 3 1
2
0 1 a
1 2 b
2 0 c
3 4 1
2
0 1 a
1 2 b
1 2 c
2 0 c
输出样例
Case #1: ab
Case #2: ac
来自杭电HDUOJ的附加信息
Recommend wange2014

该题目是Virtual Judge题目,来自 杭电HDUOJ

源链接: HDU-5487

最后修改于 2020-10-25T23:23:05+00:00 由爬虫自动更新

共提交 0

通过率 --%
时间上限 内存上限
2000/1000MS(Java/Others) 32768/32768K(Java/Others)