Baltic OI '06 P1 - Bitwise Expressions

View as PDF

Submit solution


Points: 15 (partial)
Time limit: 4.5s
Memory limit: 512M

Problem type
Baltic Olympiad in Informatics: 2006 Day 1, Problem 1

In signal processing, one is sometimes interested in the maximum value of a certain expression, containing bitwise AND and OR operators, when the variables are integers in certain ranges. You are to write a program that takes such an expression and the range of each variable as input and determines the maximum value that the expression can take.

For simplicity, the expression is of a specific form, namely a number of subexpressions in parentheses separated by the bitwise AND operator (denoted \&). Each subexpression consists of one or more variables separated by the bitwise OR operator (denoted |). Using this convention, it is possible to completely specify the expression by giving the number of subexpressions and, for each subexpression, the number of variables in the subexpression. The variables are simply numbered according to their occurrence in the expression.

An example will clarify this. If the number of subexpressions is 4 and the number of variables in each subexpression is 3, 1, 2, and 2, then the expression will be

\displaystyle E = (v_1 \mathbin{|} v_2 \mathbin{|} v_3) \mathbin{\&} (v_4) \mathbin{\&} (v_5 \mathbin{|} v_6) \mathbin{\&} (v_7 \mathbin{|} v_8)

The bitwise operators are defined in the common way. For example, to perform the operation 21 \mathbin{\&} 6, we first write down the binary form of the numbers (operands): 10101 and 110 (since 21 = 2^4 + 2^2 + 2^0 and 6 = 2^2 + 2^1). Every binary digit in the result now depends on the corresponding digit in the operands: if it is 1 in both operands, the resulting digit will be one, otherwise it will be zero. As is illustrated below to the left, the resulting value is 4. If instead we want to calculate 21 | 6, the procedure is the same except that the resulting digit will be one if the corresponding digit is one in any of the operands, and thus it will be zero only in the case that the digit is zero in both operands. As is illustrated below in the center, the result is 23. The generalization to more than two operands is straightforward. The rightmost example below illustrates that 30 \mathbin{\&} 11 \mathbin{\&} 7 = 2.

                        11110
  10101      10101      01011
& 00110    | 00110    & 00111
-------    -------    -------
  00100      10111      00010

Input

In the first line, two integers N and P are given, where N is the total number of variables (1 \le N \le 100) and P is the number of subexpressions (1 \le P \le N). In the next line, P integers (K_1, K_2, \dots, K_P) are given, where K_i is the number of variables in the i-th subexpression. The K_i are all greater than or equal to 1 and their sum equals N. Each of the following N lines contains two integers A_j and B_j (0 \le A_j \le B_j \le 2\,000\,000\,000), specifying the range of the j-th variable in the expression according to A_j \le v_j \le B_j.

Output

The output should be one row with a single integer: the maximum value that the expression can take.

Example

Assume that we want to limit the values of the eight variables in the expression above according to 2 \le v_1 \le 4, 1 \le v_2 \le 4, v_3 = 0, 1 \le v_4 \le 7, 1 \le v_5 \le 4, 1 \le v_6 \le 2, 3 \le v_7 \le 4, and 2 \le v_8 \le 3.

Sample Input

8 4
3 1 2 2
2 4
1 4
0 0
1 7
1 4
1 2
3 4
2 3

If writing in binary notation one of the best assignments gives the expression (100 \mathbin{|} 011 \mathbin{|} 000) \mathbin{\&} (111) \mathbin{\&} (100 \mathbin{|} 010) \mathbin{\&} (100 \mathbin{|} 011), from which we note that all subexpressions may become equal to 7 except the third.

Sample Output

6

Grading

In 30\% of the test cases, the number of possible assignments is less than one million.


Comments

There are no comments at the moment.