codeforces887B-Cubes for Masha

来源:互联网 发布:python 接口 编辑:程序博客网 时间:2024/05/01 16:42
B. Cubes for Masha
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

Absent-minded Masha got set of n cubes for her birthday.

At each of 6 faces of each cube, there is exactly one digit from 0 to 9. Masha became interested what is the largest natural x such she can make using her new cubes all integers from 1 to x.

To make a number Masha can rotate her cubes and put them in a row. After that, she looks at upper faces of cubes from left to right and reads the number.

The number can't contain leading zeros. It's not required to use all cubes to build a number.

Pay attention: Masha can't make digit 6 from digit 9 and vice-versa using cube rotations.

Input

In first line integer n is given (1 ≤ n ≤ 3) — the number of cubes, Masha got for her birthday.

Each of next n lines contains 6 integers aij (0 ≤ aij ≤ 9) — number on j-th face of i-th cube.

Output

Print single integer — maximum number x such Masha can make any integers from 1 to x using her cubes or 0 if Masha can't make even 1.

Examples
input
30 1 2 3 4 56 7 8 9 0 12 3 4 5 6 7
output
87
input
30 1 3 5 6 81 2 4 5 7 82 3 4 6 7 9
output
98
Note

In the first test case, Masha can build all numbers from 1 to 87, but she can't make 88 because there are no two cubes with digit 8.

题意:给出三串数字,选择不同串的数字组合,求最大的x,使得1-x皆可被表示。

题解:易知x最大也是99,直接暴力枚举所有的2位数和1位数即可。

Code:

var  n,i,j,p,q:longint;  f:array[0..99] of longint;  a:array[1..3,1..6] of longint;begin  readln(n);  for i:=1 to n do    for j:=1 to 6 do    begin      read(a[i,j]);      f[a[i,j]]:=1;    end;  for i:=1 to n do    for j:=1 to 6 do      for p:=1 to n do        if i<>p then          for q:=1 to 6 do            f[a[i,j]*10+a[p,q]]:=1;  i:=1;  while f[i]=1 do inc(i);  writeln(i-1);end.