#1955. [Wuhan2010] Assembling Services

[Wuhan2010] Assembling Services

注:原题面与数据不符。

题目描述

In this problem, you need to simulate the execution of nn service programs P1,P2,,PnP_1, P_2, \ldots, P_n. Each program is described with sequence of integers: $T\ I\ in_1\ in_2 \ldots in_I\ O\ out_1\ out_2\ \ldots\ out_O$, that means it takes TT unit time to execute, needs II input variables (i.e. in1 in2 inIin_1\ in_2\ \ldots in_I), and sets OO output variables (i.e. out1 out2 outOout_1\ out_2\ \ldots out_O) when it finishes running. A program can be started if and only if all these TT input variables are ready (initially available, or set by some other programs).

Imagine you have a super-computer which can execute as many programs in parallel as you like, and every variable can be read and written simultaneously by multiple programs. Your task is to calculate a particular "target" variable, as soon as possible.

Assume there are 44 programs, shown in the table below:

Program No. Time Requires Produces
11 22 X1X_1 X2X_2
22 33 X3X_3
33 44 X2X_2 X4X_4
44 11 X3,X1X_3,X_1 X5X_5

The quickest time to get X5X_5 is 77, if only X1X_1 is available at startup.

You also need to construct an expression that shows how to execute the programs to achieve the minimal time. The grammar of the expression is recursive:

  • Single Program: Px, where 1xn1 \le x \le n. (i.e. P2, P499, etc). Meaning: execute the program immediately. Then end of this program marks the end of this expression.
  • Execute in serial: (S1S2...Sk), where every Si is an expression. Note that the outermost pair of parentheses is mandatory. Meaning: execute expression S1, then S2 immediately after S1 ends, then S3 immediately after S2 ends, ..., and finally Sk immediately after Sk-1 ends. Then end of expression Sk marks the end of the whole expression.
  • Execute in parallel: (S1|S2|...|Sk), where every Si is an expression. Note that the outermost pair of parentheses is mandatory. Meaning: execute expressions S1, S2, ..., and Sk simultaneously. The end of last finished expression marks the end of the whole expression.

One of the possible expressions for the example above is (((P1P3)|P2)P4). (P1P2P3P4) is not acceptable, since X5X_5 is available at time 1010 in that expression, later than the optimal time 77.

输入格式

Each case begins with three integers n,m,on, m, o. The number of programs is nn, the number of variables is mm, and the target variable is XoX_o. Variables are numbered 11 to mm, programs are numbered 11 to nn. The next line contains a 01 string of m characters. The ii-th character is 1\texttt{1} if and only if the ii-th variable is initially available. The target variable is guaranteed to be unavailable at startup. The following nn lines describe the programs. Each line begins with an integer TT, the execution time, and an integer II followed by II integers in1,in2,...,inIin_1, in_2, ..., in_I, as stated above, then an integer OO followed by OO integers out1,out2,...,outOout_1, out_2, ..., out_O. The last test case is followed by n=m=o=0n=m=o=0, which should not be processed.

输出格式

For each test case, print the case number and the total time needed to get the target variable. If it's not possible to get the target variable, print 1-1 instead.

If it's possible to get the target variable, print the expression after that, in the same line. Be sure to print a valid expression having at most 10410^4 characters, with each program printed at most once. There should be no whitespace characters within the expression.

To make this problem a little bit easier, it's allowed that some programs finish after the optimal time, as long as the target variable is available at the optimal time. You’re also allowed to print redundant parentheses (pay attention to the expression length, though). If such an expression does not exist, print "Can't do in serial-parallel.", without quotes.

Print a blank line after the output of each test case.

4 5 5
10000
2 1 1 1 2
3 1 1 1 3
4 1 2 1 4
1 2 3 4 1 5
1 2 1
01
31 1 2 1 1
3 5 5
10100
3 1 1 1 2
1 1 3 1 4
3 2 4 2 1 5
1 3 3
100
1 1 1 1 2
0 0 0
Case 1: 7
Case 2: 31
Case 3: 6
Case 4: -1

样例解释 1

After a variable is set, it'll keep available forever. That's why P3 can be executed, in the third example.

Also note that there are some other correct expressions for the first sample, e.g. ((P1P3P4)|P2). You can even print (((P1P3)P4)|P2) Or ((P1(P3P4))|P2). Any one of them is acceptable in this problem.

数据规模与约定

For all the test cases, 1n,m5001 \le n,m \le 500, 1om1 \le o \le m, 1ini,outim1 \le in_i,out_i \le m, 1I,O101 \le I,O \le 10, 1T1001 \le T \le 100.