CodeForces - 887B Cubes for Masha(暴力)

Cubes for Masha

 

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 ofi-th cube.

Output

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

Examples

Input

3
0 1 2 3 4 5
6 7 8 9 0 1
2 3 4 5 6 7

Output

87

Input

3
0 1 3 5 6 8
1 2 4 5 7 8
2 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.

 

题意很简单,给你 n 个魔方,每个魔方的6个面上都有一个数字 0 ~ 9,这 n 个魔方能组成一些自然数, 求一个自然数 x,使魔方能够组成 1  到   x 中的任意一个数。组成数的魔方数量可以任取,也可以交换位置。

思路:题目给的数据范围 及其的小,直接暴力就完事了。 开一个 vis[100] 的数组,3 个 魔方能够组成的满足题意的最大的自然数为 98, 很好算的。 先判断是否能够组成单个数字 1 ~ 9, 然后直接暴力枚举两两魔方之间能组成的数,最后 for 一下 1 到 99,第一个出现 vis 为 0 的 , i - 1 就是 答案。

AC代码:

#include<bits/stdc++.h>
using namespace std;

int a[4][7];
int vis[100];
int ovis[10];

int main()
{
    int n;
    while(~scanf("%d",&n)){
        memset(vis,0,sizeof(vis));
        memset(ovis,0,sizeof(ovis));
        for(int i = 1;i <= n;i ++)
            for(int j = 1;j <= 6;j ++){
                scanf("%d",&a[i][j]);
                ovis[a[i][j]] = 1;
            }
        int flag = 1, coun = -1;
        for(int i = 1;i <= 9;i ++){
            if(ovis[i] == 0){
                flag = 0;
                coun = i;
                break;
            }
        }
        if(!flag){ printf("%d\n",coun - 1); continue; }
        for(int i = 1;i <= n;i ++)
            for(int j = 1;j <= 6;j ++)
                for(int k = 1;k <= n;k ++){
                    if(i == k) continue;
                    for(int m = 1;m <= 6;m ++)
                        vis[a[i][j]*10+a[k][m]] = 1;
                }
        for(int i = 1;i <= 9;i ++) vis[i] = 1;
        for(int i = 1;i <= 99;i ++)
            if(vis[i] == 0){
                coun = i - 1;
                break;
            }
        printf("%d\n",coun);
    }
    return 0;
}

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值