[关闭]
@xunuo 2017-05-17T12:35:50.000000Z 字数 4095 阅读 918

ZOJ 3960 What Kind of Friends Are You?


Time limit1000 msMemory limit65536 kBOSLinux

STL


Description

Japari Park is a large zoo home to extant species, endangered species, extinct species, cryptids and some legendary creatures. Due to a mysterious substance known as Sandstar, all the animals have become anthropomorphized into girls known as Friends.

Kaban is a young girl who finds herself in Japari Park with no memory of who she was or where she came from. Shy yet resourceful, she travels through Japari Park along with Serval to find out her identity while encountering more Friends along the way, and eventually discovers that she is a human.

However, Kaban soon finds that it's also important to identify other Friends. Her friend, Serval, enlightens Kaban that she can use some questions whose expected answers are either "yes" or "no" to identitfy a kind of Friends.

To be more specific, there are n Friends need to be identified. Kaban will ask each of them q same questions and collect their answers. For each question, she also gets a full list of animals' names that will give a "yes" answer to that question (and those animals who are not in the list will give a "no" answer to that question), so it's possible to determine the name of a Friends by combining the answers and the lists together.

But the work is too heavy for Kaban. Can you help her to finish it?

Input

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

The first line of each test case contains two integers n (1 ≤ n ≤ 100) and q (1 ≤ q ≤ 21), indicating the number of Friends need to be identified and the number of questions.

The next line contains an integer c (1 ≤ c ≤ 200) followed by c strings p1, p2, ... , pc (1 ≤ |pi| ≤ 20), indicating all known names of Friends.

For the next q lines, the i-th line contains an integer mi (0 ≤ mi ≤ c) followed by mi strings si, 1, si, 2, ... , si, mi (1 ≤ |si, j| ≤ 20), indicating the number of Friends and their names, who will give a "yes" answer to the i-th question. It's guaranteed that all the names appear in the known names of Friends.

For the following n lines, the i-th line contains q integers ai, 1, ai, 2, ... , ai, q (0 ≤ ai, j ≤ 1), indicating the answer (0 means "no", and 1 means "yes") to the j-th question given by the i-th Friends need to be identified.

It's guaranteed that all the names in the input consist of only uppercase and lowercase English letters.

Output

For each test case output n lines. If Kaban can determine the name of the i-th Friends need to be identified, print the name on the i-th line. Otherwise, print "Let's go to the library!!" (without quotes) on the i-th line instead.

Sample Input

2
3 4
5 Serval Raccoon Fennec Alpaca Moose
4 Serval Raccoon Alpaca Moose
1 Serval
1 Fennec
1 Serval
1 1 0 1
0 0 0 0
1 0 0 0
5 5
11 A B C D E F G H I J K
3 A B K
4 A B D E
5 A B K D E
10 A B K D E F G H I J
4 B D E K
0 0 1 1 1
1 0 1 0 1
1 1 1 1 1
0 0 1 0 1
1 0 1 1 1

Sample Output

Serval
Let's go to the library!!
Let's go to the library!!
Let's go to the library!!
Let's go to the library!!
B
Let's go to the library!!
K

Hint

The explanation for the first sample test case is given as follows:

As Serval is the only known animal who gives a "yes" answer to the 1st, 2nd and 4th question, and gives a "no" answer to the 3rd question, we output "Serval" (without quotes) on the first line.

As no animal is known to give a "no" answer to all the questions, we output "Let's go to the library!!" (without quotes) on the second line.

Both Alpaca and Moose give a "yes" answer to the 1st question, and a "no" answer to the 2nd, 3rd and 4th question. So we can't determine the name of the third Friends need to be identified, and output "Let's go to the library!!" (without quotes) on the third line.

题意:

直接说输入......
先输入一个t,表示接下来有t组数据;
每组数据有第一行有两个数:n和q;表示这个人有n个朋友,有q次询问;
第二行输入一个数c,表示将输入c个朋友的名字,接着输入c个名字;
第三行到接下来的q-1行;输入要描述的名字的个数和这些名字;
完了之后接下来n行输入这n人对这q个信息的回答,1表示有这个人的名字,0表示没有这个人的名字;如果通过这个人的回答能够确定他是谁,那就输出它的名字,如果不能,就输出“Let's go to the library!!”;

解题思路:

用一个map来村输入的c个名字;每个名字对应他们输入的次序i;
用一个vis[][]二维数组来标记它所询问的名字是否出现,如果出现为1,没出现为0;
flag[]数组判断这个人的回答与所对应的vis是否对应,如果不对应,则令当前flag为1;然后记录可以确定的人的位置,输出!

完整代码:

  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. int main()
  4. {
  5. int t;
  6. scanf("%d",&t);
  7. while(t--)
  8. {
  9. int n,q;
  10. scanf("%d%d",&n,&q);
  11. int c;
  12. scanf("%d",&c);
  13. map<string,int>mp;
  14. string s[210];
  15. for(int i=1;i<=c;i++)
  16. {
  17. cin>>s[i];
  18. mp[s[i]]=i;
  19. }
  20. int vis[210][210];
  21. memset(vis,0,sizeof(vis));
  22. for(int i=1;i<=q;i++)
  23. {
  24. int m;
  25. scanf("%d",&m);
  26. for(int j=1;j<=m;j++)
  27. {
  28. string s1;
  29. cin>>s1;
  30. vis[i][mp[s1]]=1;
  31. }
  32. }
  33. for(int i=1;i<=n;i++)
  34. {
  35. int flag[210];
  36. memset(flag,0,sizeof(flag));
  37. for(int j=1;j<=q;j++)
  38. {
  39. int v;
  40. scanf("%d",&v);
  41. for(int k=1;k<=c;k++)
  42. {
  43. if(vis[j][k]!=v)
  44. {
  45. flag[k]=1;
  46. }
  47. }
  48. }
  49. int ans,cnt=0;
  50. for(int j=1;j<=c;j++)
  51. {
  52. if(flag[j]==0)
  53. {
  54. ans=j;
  55. cnt++;
  56. }
  57. }
  58. if(cnt==1)
  59. cout<<s[ans]<<endl;
  60. else
  61. printf("Let's go to the library!!\n");
  62. }
  63. }
  64. return 0;
  65. }
添加新批注
在作者公开此批注前,只有你和作者可见。
回复批注