ZOJ

来源:互联网 发布:三端口环形器 编辑:程序博客网 时间:2024/05/21 20:22
Seven-Segment Display

Time Limit: 1 Second      Memory Limit: 65536 KB

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 = cpxi 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).

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.


题目大意:

给你一个9行7列的矩阵,问你能不能在互换某些列之后,使得给出的n行中,有某些行符合某些列互换过后的情况:

思路:

由于只是列互换,所以一列中的上下对应情况是不变的,是要判断上下对应情况是不是以后即可判断是否符合。


PS:这题的写法上还是应有一些技巧的,值得学习!

#include<bits/stdc++.h>using namespace std;char Display[10][10] = {    "1011011",    "0000110",    "0010010",    "0011001",    "0110000",    "0100000",    "1011010",    "0000000",    "0010000"};int d[15];char s[10][10];string a[15], b[15];int main(){    int n, T;    scanf("%d", &T);    while(T--)    {        scanf("%d", &n);        for(int i = 1; i <= n; i++)            scanf("%d%s", &d[i], s[i]);        for(int j = 0; j < 7; j++)        {            a[j] = b[j] = "";            for(int i = 1; i <= n; i++)            {                a[j] += s[i][j];                b[j] += Display[d[i]-1][j];            }        }        sort(a, a+7);        sort(b, b+7);        bool flag = true;        for(int i = 0; i < 7; i++)            if(a[i] != b[i])                flag = false;        puts(flag ? "YES" : "NO");    }    return 0;}



0 0
原创粉丝点击