Online Judge | Problem Set | Authors | Online Contests | User | ||||||
---|---|---|---|---|---|---|---|---|---|---|
Web Board Home Page F.A.Qs Statistical Charts | Current Contest Past Contests Scheduled Contests Award Contest |
Language: John's Canonical Difference Bound Matrices
Description When John studied the timed automaton, he met the problem about how to trigger the machine. With the problem deeply studied, he found that it can be ascribed to the clock constraints of the timed automaton. The timed automation in question is described below: The clock variables, or simply clocks, are variables whose values are integers. Of course, time passes at the same rate for all clocks, and any clock can be reset to zero. John uses C to denote the finite set of clocks, and defines the clock constraints for C as follows:
John notes that a clock constraint can define several regions in some multidimensional space. He wants to know such regions, so he defines the clock zones recursively as follows. For simplicity, he let C0 = C ∪ {x0}, where x0 is a reference clock whose value is always 0. The clock zone A can be described by a Difference Bound Matrix D (called a DBM) which is a matrix (Dij) of size |C0| × |C0|. Each Dij has the form (dij, For every inequality xi − xj For example, DBM of the clock zone given by x1 − x2 < 2 ∧ 0 < x2 ≤ 2 ∧ 1 ≤ x1 is shown below:
The representation of a clock zone by a DBM is not unique. In this example, there are some implied constraints that are not reflected in the DBM. Since x1 − x2 < 2 and x2 ≤ 2, it must be the case x1 < 4. Since x0 = 0, the original D10 = ( Now John wants to do the similar adjusting operations of difference bounds for all clocks xi and xj until further application of this tighten operation does not change the matrix. John obtains the following new canonical difference bound matrix:
Note that some clock zone may contain contrary conditions and has not canonical difference bound matrix. But John can not obtain a canonical difference bound matrix for a complex clock zone. He asks for your help. Input The first line of the input file is a single integer T (1 ≤ T ≤ 20), which is the number of test cases you must process, followed by T test cases: Each test case consists of several lines. Four integers i, j, d and r are given on each line, representing a constraint xi − xj < d or xi − xj ≤ d (0 ≤ i, j ≤ m, −10000 < d < 10000). If r = 0, then this line represents an inequality in the form of xi − xj < d, otherwise it represents an inequality in the form of xi − xj ≤ d. The maximal index m of clocks indicates that the indexes of the clocks are 0, 1, …, m, (1 ≤ m ≤ 100). Note that you have to get the value of m by yourself. A symbol Output For each test case, first output “ For each test case, output the description of the canonical difference bound matrix. If it doesn’t have a canonical difference bound matrix, print “ Sample Input 1 1 2 2 0 0 2 0 0 2 0 2 1 0 1 -1 1 # Sample Output Case 1: (0,<=) (-1,<=) (0,<) (4,<) (0,<=) (2,<) (2,<=) (1,<=) (0,<=) Source |
[Submit] [Go Back] [Status] [Discuss]
All Rights Reserved 2003-2013 Ying Fuchen,Xu Pengcheng,Xie Di
Any problem, Please Contact Administrator