zoj 3960 What Kind of Friends Are You?(哈希)

What Kind of Friends Are You?


Time Limit: 1 Second      Memory Limit: 65536 KB


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 p1p2, ... , 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, 1si, 2, ... , simi (1 ≤ |sij| ≤ 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, 1ai, 2, ... , aiq (0 ≤ aij ≤ 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.



Author: DAI, Longao
Source: The 14th Zhejiang Provincial Collegiate Programming Contest Sponsored by TuSimple

求q个集合的交集,交集中只有一个的话输出

 1 #include <bits/stdc++.h>
 2 using namespace std;
 3
 4 int c;//, p;
 5 char p[205][25];
 6
 7 int getIndex(char s[])
 8 {
 9     int i;
10     for (i = 0; i < c; ++i) {
11         if (strcmp(s, p[i]) == 0) {
12             return i;
13         }
14     }
15     return -1;
16 }
17
18 int main()
19 {
20     int T;
21     int n, q;
22
23
24     int m;//, s;
25     char s[25];
26     bool exist[25][205];
27     int a;
28     int i, j, k;
29     bool isName[205];
30
31     int sum;
32     int index;
33
34     scanf("%d", &T);
35
36     while (T--) {
37         scanf("%d%d", &n, &q);
38         scanf("%d", &c);
39         for (i = 0; i < c; ++i) {
40             scanf("%s", p[i]);
41         }
42
43         memset(exist, false, sizeof(exist));
44         for (i = 0; i < q; ++i) {
45             scanf("%d", &m);
46             for (j = 0; j < m; ++j){
47                 scanf("%s", s);
48                 exist[i][getIndex(s)] = true;//第i个问题的名字
49             }
50         }
51
52         for (i = 0; i < n; ++i) {
53             memset(isName, true, sizeof(isName));//初始化全部
54             for (j = 0; j < q; ++j) {
55                 scanf("%d", &a);
56                 if (a == 1) {
57                     for (k = 0; k < c; ++k) {
58                         isName[k] = isName[k] && exist[j][k];
59                     }
60                 } else {
61                     for (k = 0; k < c; ++k) {
62                         isName[k] = isName[k] && (!exist[j][k]);
63                     }
64                 }
65             }
66
67             sum = 0;
68             for (k = 0; k < c; ++k) {
69                 if (isName[k]) {
70                     ++sum;
71                     index = k;
72                 }
73             }
74
75             //cout << "sum = " << sum << endl;
76             if (sum == 1) {
77                 printf("%s\n", p[index]);
78             } else {
79                 printf("Let‘s go to the library!!\n");
80             }
81         }
82
83     }
84
85     return 0;
86 }
时间: 2024-11-03 12:30:15

zoj 3960 What Kind of Friends Are You?(哈希)的相关文章

2017浙江省赛 C - What Kind of Friends Are You? ZOJ - 3960

地址:http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemCode=3960 题目: 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, a

ZOJ 3960: What Kind of Friends Are You?

What Kind of Friends Are You? ///@author Sycamore, ZJNU ///@date 4/22/2017 #include <iostream> #include <sstream> #include <iomanip> #include <cmath> #include <string> #include <algorithm> #include <numeric> #incl

zoj 3960(矩阵快速幂)

题意:有n个人坐成一排,每个人从1-m中选出一个数字,只有一个规则,如果相邻两个人选出的数字相同,这个数字必须大于等于k(k <= m),问n个人选数字一共有多少种方法. 题解:需要递推,定义一个数组f[i]表示要放第i个数字大于等于k的方法数,g[i]表示要放第i个数字小于k的方法,结果当然就是f[n] + g[n]. f[i] = f[i - 1] * (m - k) + g[i - 1] * (m - k) g[i] = f[i - 1] * k + g[i - 1] * (k - 1)

ZOJ 3960 What Kind of Friends Are You?(读题+思维)

题目链接 :http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemId=5592 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

关于 省赛模拟赛(迪迦桑专场)

这一次的小比赛,因为全是英文题,导致了我们队的心态有点崩,以前很少打这种全是英文的比赛, 但是我们明知道以后还会打这种比赛, 却没有提前做好准备. 这一次的比赛我们全程跟着榜单走, 我们队一开始采取了2+1的打法, 让一个人去钻一道题, 其他两个人去快速的解决一些简单的题, 然后在解决两道题之后, 变为了一人钻一题的模式, 但是依旧没有太大的突破. 这一次我写的是C题,因为一个小漏洞,导致了一直WA,最后还是没有找出来....以后多去找一些细节问题,做到下次不会再栽在这个问题上面. C - Wh

概率dp ZOJ 3640

Help Me Escape Time Limit:2000MS     Memory Limit:32768KB     64bit IO Format:%lld & %llu Submit Status Practice ZOJ 3640 Appoint description:  System Crawler  (2014-10-22) Description Background     If thou doest well, shalt thou not be accepted? an

zoj 2156 - Charlie&#39;s Change

题目:钱数拼凑,面值为1,5,10,25,求组成n面值的最大钱币数. 分析:dp,01背包.需要进行二进制拆分,否则TLE,利用数组记录每种硬币的个数,方便更新. 写了一个 多重背包的 O(NV)反而没有拆分快.囧,最后利用了状态压缩优化 90ms: 把 1 cents 的最后处理,其他都除以5,状态就少了5倍了. 说明:貌似我的比大黄的快.(2011-09-26 12:49). #include <stdio.h> #include <stdlib.h> #include <

ZOJ 1718 POJ 2031 Building a Space Station 修建空间站 最小生成树 Kruskal算法

题目链接:ZOJ 1718 POJ 2031 Building a Space Station 修建空间站 Building a Space Station Time Limit: 2 Seconds      Memory Limit: 65536 KB You are a member of the space station engineering team, and are assigned a task in the construction process of the statio

ZOJ 3607 Lazier Salesgirl (贪心)

Lazier Salesgirl Time Limit: 2 Seconds      Memory Limit: 65536 KB Kochiya Sanae is a lazy girl who makes and sells bread. She is an expert at bread making and selling. She can sell the i-th customer a piece of bread for price pi. But she is so lazy