博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
PAT A1149 Dangerous Goods Packaging (25 分)——set查找
阅读量:4310 次
发布时间:2019-06-06

本文共 2382 字,大约阅读时间需要 7 分钟。

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:

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:

6 320001 2000220003 2000420005 2000620003 2000120005 2000420004 200064 00001 20004 00002 200035 98823 20002 20003 20006 100103 12345 67890 23333

Sample Output:

NoYesYes
 
#include 
#include
#include
#include
#include
#include
using namespace std;int n, m, k;set
adj[100001];int inc[100001] = { 0 };int req[110];int main() { scanf("%d %d", &n, &m); for (int i = 0; i < n; i++) { int c1, c2; scanf("%d %d", &c1, &c2); adj[c1].insert(c2); adj[c2].insert(c1); inc[c1] = 1; inc[c2] = 1; } for (int i = 0; i < m; i++) { int flag = 0; scanf("%d", &k); for (int j = 0; j < k; j++) { scanf("%d", &req[j]); } for (int j = 0; j < k; j++) { if (flag == 0) { for (int q = j + 1; q < k; q++) { if (adj[req[j]].find(req[q]) != adj[req[j]].end()) { flag = 1; break; } } } else break; } printf("%s\n", flag == 0 ? "Yes" : "No"); }}

注意点:看到题目第一眼想到的是图的联通块,但想想第二题应该不会考图,还是用map来做,用map好像有点麻烦,一个对应多个的时候不方便,那用vector,不好判断在不在里面。最终还是用set比较好,就开一个很大的set数组,然后一个个去查找就好了,内存和时间都不超。

转载于:https://www.cnblogs.com/tccbj/p/10412106.html

你可能感兴趣的文章
Set集合中的treeSet问题:cannot be cast to java.lang.Comparable;
查看>>
LeetCode-Maximum Product Subarray-最大乘积子数组-情况判断
查看>>
支付渠道路由系统进化史
查看>>
计算机领域会议和期刊
查看>>
shell 获得后台进程返回值
查看>>
python 多线程_thread
查看>>
SpringBoot2.0 + SpringCloud Eureka搭建高可用注册中心(Eureka之三)
查看>>
vue.js 组件-全局组件和局部组件
查看>>
svn 分支与合并的使用
查看>>
intellj idea
查看>>
浮动(clear)
查看>>
HierarchicalDataTemplate
查看>>
关于 keybd_event (vb篇)
查看>>
记公司的原型设计软件培训课程
查看>>
C语言知识点
查看>>
猴子吃桃
查看>>
tesseract-ocr图像识别技术(一)
查看>>
vs下dll与exe调试
查看>>
排列——递归
查看>>
cocos2d lua的cclog 在logcat中显示
查看>>