危险品装箱--map充当散列,记录数据出现次数
vectorv[maxn]充当键值对
1. 原文
When shipping goods with containers, we have to be careful not to pack some incompatible goods into the same container, or we might get ourselves in serious trouble. For example, oxidizing agent (氧化剂) must not be packed with flammable liquid (易燃液体), or it can cause explosion.
Now you are given a long list of incompatible goods, and several lists of goods to be shipped. You are supposed to tell if all the goods in a list can be packed into the same container.
Input Specification:
Each input file contains one test case. For each case, the first line gives two positive integers: N (≤104), the number of pairs of incompatible goods, and M (≤100), the number of lists of goods to be shipped.
Then two blocks follow. The first block contains N pairs of incompatible goods, each pair occupies a line; and the second one contains M lists of goods to be shipped, each list occupies a line in the following format:
1 | K G[1] G[2] ... G[K] |
where K
(≤1,000) is the number of goods and G[i]
‘s are the IDs of the goods. To make it simple, each good is represented by a 5-digit ID number. All the numbers in a line are separated by spaces.
output Specification:
For each shipping list, print in a line Yes
if there are no incompatible goods in the list, or No
if not.
Sample Input:
1 | 6 3 |
Sample output:
1 | No |
2. 解析
易燃液体对不能存放在一起。
1 | vector<int> v[maxn] |
记录他们之间的对应
对于每个集装箱建立
1 | map<int,int> exist |
将当前物品的所有匹配
1 | exist[v[a][i]]++; |
对于当前物品搜索exist[a]>0时,则该集装箱不合格
3. AC代码
1 |
|