G

来源:互联网 发布:淘宝鹰眼 编辑:程序博客网 时间:2024/04/30 04:38

A seven segment display, or seven segment indicator, is a form of electronic display device for displaying decimal numerals that is an alternative to the more complex dot matrix displays. Seven segment displays are widely used in digital clocks, electronic meters, basic calculators, and other electronic devices that display numerical information.

The segments of a seven segment display are arranged as a rectangle of two vertical segments on each side with one horizontal segment on the top, middle, and bottom. If we refer the segments as the letters from a to g, it's possible to use the status of the segments which is called a seven segment code to represent a number. A standard combination of the seven segment codes is shown below.

Xabcdefg110011112001001030000110410011005010010060100000700011118000000090000100   0 = on  1 = off

A seven segment code of permutation p is a set of seven segment code derived from the standard code by rearranging the bits into the order indicated by p. For example, the seven segment codes of permutation "gbedcfa" which is derived from the standard code by exchanging the bits represented by "a" and "g", and by exchanging the bits represented by "c" and "e", is listed as follows.

Xgbedcfa110110112000011030010010400110015011000060100000710110108000000090010000

We indicate the seven segment code of permutation p representing number x as cpx. For example cabcdefg,7 = 0001111, and cgbedcfa,7 = 1011010.

Given n seven segment codes s1s2, ... , sn and the numbers x1x2, ... , xn each of them represents, can you find a permutation p, so that for all 1 ≤ i ≤ nsi = cp,xi holds?

Input

The first line of the input is an integer T (1 ≤ T ≤ 105), indicating the number of test cases. Then T test cases follow.

The first line of each test case contains an integer n (1 ≤ n ≤ 9), indicating the number of seven segment codes.

For the next n lines, the i-th line contains a number xi (1 ≤ xi ≤ 9) and a seven segment code si (|si| = 7), their meanings are described above.

It is guaranteed that ∀ 1 ≤ i < j ≤ nxi ≠ xj holds for each test case.


Output

For each test case, output "YES" (without the quotes) if the permutation p exists. Otherwise output "NO" (without the quotes).

<h4< dd="">
Sample Input
391 10011112 00100103 00001104 10011005 01001006 01000007 00011118 00000009 000010021 10011117 101001127 01010111 1101011

Sample Output
YESNOYES

Hint

For the first test case, it is a standard combination of the seven segment codes.

For the second test case, we can easily discover that the permutation p does not exist, as three in seven bits are different between the seven segment codes of 1 and 7.

For the third test case, p = agbfced.

#include<iostream>#include<stdio.h>#include<string.h>#include<string>#include<algorithm>using namespace std;char code[10][10],a[10][10]={"","1001111","0010010","0000110","1001100","0100100","0100000","0001111","0000000","0000100"};int b[10],c[10];bool vis[10];int m[10]={1,2,4,8,16,32,64,128,256,512};int main(){    int t;scanf("%d",&t);    while(t--){        int n;scanf("%d",&n);        memset(b,0,sizeof(b));        memset(c,0,sizeof(c));        memset(vis,0,sizeof(vis));        for(int tmp,i=0;i<n;i++){        scanf("%d",&tmp);        vis[tmp]=1;        scanf("%s",code[tmp]);}        for(int i=0;i<7;i++){            for(int j=1;j<10;j++){            if(!vis[j]) continue;            b[i]+=(code[j][i]-'0')*m[j];                c[i]+=(a[j][i]-'0')*m[j];            }        }        sort(b,b+7);        sort(c,c+7);        bool ans=1;        for(int i=0;i<7;i++)           if(b[i]!=c[i]){              ans=0;              break;           }        if(ans) puts("YES");        else    puts("NO");    }}



0 0