CYK algorithm


In computer science, the Cocke–Younger–Kasami algorithm is a parsing algorithm for context-free grammars, named after its inventors, John Cocke, Daniel Younger and Tadao Kasami. It employs bottom-up parsing and dynamic programming.
The standard version of CYK operates only on context-free grammars given in Chomsky normal form. However any context-free grammar may be transformed to a CNF grammar expressing the same language.
The importance of the CYK algorithm stems from its high efficiency in certain situations. Using Big O notation, the worst case running time of CYK is, where is the length of the parsed string and is the size of the CNF grammar . This makes it one of the most efficient parsing algorithms in terms of worst-case asymptotic complexity, although other algorithms exist with better average running time in many practical scenarios.

Standard form

The dynamic programming algorithm requires the context-free grammar to be rendered into Chomsky normal form, because it tests for possibilities to split the current sequence into two smaller sequences. Any context-free grammar that does not generate the empty string can be represented in CNF using only production rules of the forms and.

Algorithm

As pseudocode

The algorithm in pseudocode is as follows:
let the input be a string I consisting of n characters: a1... an.
let the grammar contain r nonterminal symbols R1... Rr, with start symbol R1.
let P be an array of booleans. Initialize all elements of P to false.
for each s = 1 to n
for each unit production Rvas
set P = true
for each l = 2 to n -- Length of span
for each s = 1 to n-l+1 -- Start of span
for each p = 1 to l-1 -- Partition of span
for each production RaRb Rc
if P and P then set P = true
if P is true then
I is member of language
else
I is not member of language

Probabilistic CYK (for finding the most probable parse)

Allows to recover the most probable parse given the probabilities of all productions.

let the input be a string I consisting of n characters: a1... an.
let the grammar contain r nonterminal symbols R1... Rr, with start symbol R1.
let P be an array of real numbers. Initialize all elements of P to zero.
let back be an array of backpointing triples.
for each s = 1 to n
for each unit production Rvas
set P = Pr
for each l = 2 to n -- Length of span
for each s = 1 to n-l+1 -- Start of span
for each p = 1 to l-1 -- Partition of span
for each production RaRb Rc
prob_splitting = Pr * P * P
if P > 0 and P > 0 and P < prob_splitting then
set P = prob_splitting
set back =

As prose

In informal terms, this algorithm considers every possible substring of the input string and sets to be true if the substring of length starting from can be generated from nonterminal variable. Once it has considered substrings of length 1, it goes on to substrings of length 2, and so on. For substrings of length 2 and greater, it considers every possible partition of the substring into two parts, and checks to see if there is some production such that matches the first part and matches the second part. If so, it records as matching the whole substring. Once this process is completed, the sentence is recognized by the grammar if the substring containing the entire input string is matched by the start symbol.

Example

This is an example grammar:
Now the sentence she eats a fish with a fork is analyzed using the CYK algorithm. In the following table, in, is the number of the row , and is the number of the column.
S------
VP-----
----
S---
VPPP--
SNPNP-
NPV, VPDet.NPDetN
sheeatsafishwithafork

For readability, the CYK table for P is represented here as a 2-dimensional matrix M containing a set of non-terminal symbols, such that is in if, and only if,.
In the above example, since a start symbol S is in, the sentence can be generated by the grammar.

Extensions

Generating a parse tree

The above algorithm is a recognizer that will only determine if a sentence is in the language. It is simple to extend it into a parser that also constructs a parse tree, by storing parse tree nodes as elements of the array, instead of the boolean 1. The node is linked to the array elements that were used to produce it, so as to build the tree structure. Only one such node in each array element is needed if only one parse tree is to be produced. However, if all parse trees of an ambiguous sentence are to be kept, it is necessary to store in the array element a list of all the ways the corresponding node can be obtained in the parsing process. This is sometimes done with a second table B of so-called backpointers.
The end result is then a shared-forest of possible parse trees, where common trees parts are factored between the various parses. This shared forest can conveniently be read as an ambiguous grammar generating only the sentence parsed, but with the same ambiguity as the original grammar, and the same parse trees up to a very simple renaming of non-terminals, as shown by.

Parsing non-CNF context-free grammars

As pointed out by, the drawback of all known transformations into Chomsky normal form is that they can lead to an undesirable bloat in grammar size. The size of a grammar is the sum of the sizes of its production rules, where the size of a rule is one plus the length of its right-hand side. Using to denote the size of the original grammar, the size blow-up in the worst case may range from to, depending on the transformation algorithm used. For the use in teaching, Lange and Leiß propose a slight generalization of the CYK algorithm, "without compromising efficiency of the algorithm, clarity of its presentation, or simplicity of proofs".

Parsing weighted context-free grammars

It is also possible to extend the CYK algorithm to parse strings using weighted and stochastic context-free grammars. Weights are then stored in the table P instead of booleans, so P will contain the minimum weight that the substring from i to j can be derived from A. Further extensions of the algorithm allow all parses of a string to be enumerated from lowest to highest weight.

Valiant's algorithm

The worst case running time of CYK is, where n is the length of the parsed string and |G| is the size of the CNF grammar G. This makes it one of the most efficient algorithms for recognizing general context-free languages in practice. gave an extension of the CYK algorithm. His algorithm computes the same parsing table
as the CYK algorithm; yet he showed that algorithms for efficient multiplication of matrices with 0-1-entries can be utilized for performing this computation.
Using the Coppersmith–Winograd algorithm for multiplying these matrices, this gives an asymptotic worst-case running time of. However, the constant term hidden by the Big O Notation is so large that the Coppersmith–Winograd algorithm is only worthwhile for matrices that are too large to handle on present-day computers, and this approach requires subtraction and so is only suitable for recognition. The dependence on efficient matrix multiplication cannot be avoided altogether: has proved that any parser for context-free grammars working in time can be effectively converted into an algorithm computing the product of -matrices with 0-1-entries in time.