B

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
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的数字,每行的数字最多取一个或者不取,找到最小的不能组成的数字x ,且1~x-1都能组成。

代码:

 1 #include <iostream>
 2 #include <map>
 3 #include <cstdio>
 4 #include <vector>
 5 using namespace std;
 6 int n,t;
 7 int a[20];
 8 int hh[3]; ///统计对于一个数字而言,是否已经用过了每一行
 9 
10 map<int,vector<int> >mp;
11 int temp;
12 void solve(int ans)
13 {
14     ///判断行的使用情况,使用超过一次以上就说明不行
15     for(int i=0;i<n;i++)
16         if(hh[i]>1) return ; 
17     
18     ///数字组成完毕
19     if(ans==0) {temp=1;return;}
20     ///缺少组成这一部分的数
21     if(mp[ans%10].size()==0) return;
22 
23     else
24     {
25         for(int i=0;i<mp[ans%10].size();i++)
26         {
27             hh[mp[ans%10][i]]++;
28             solve(ans/10);
29             hh[mp[ans%10][i]]--;
30             ///把每一种都试
31         }
32     }
33 }
34 
35 int main()
36 {
37     cin>>n;
38     for(int i=0;i<n;i++)  ///输入,mp里存放每一个数字出现的行数
39        for(int j=0;j<6;j++)
40           {
41               cin>>a[t++];
42               mp[a[t-1]].push_back(i);
43           }
44           
45     temp=1;
46     int ans=1; ///递增遍历数字,直到找到不能组成的数字为止
47     while(temp){
48         hh[0]=hh[1]=hh[2]=temp=0; ///清零
49         solve(ans);
50         ans++;
51     }
52     ///输出那个不能组成的最小的数
53     cout<<ans-2<<endl;
54     return 0;
55 }
B - Cubes for Masha
まだまだだね
原文地址:https://www.cnblogs.com/xxQ-1999/p/7803644.html